Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
adam.huang
Arm Trusted Firmware
Commits
13135323
Commit
13135323
authored
Aug 03, 2020
by
Manish Pandey
Committed by
TrustedFirmware Code Review
Aug 03, 2020
Browse files
Merge "TF-A Aarch32: optimise memcpy4()" into integration
parents
28e2daa9
e6e7d712
Changes
1
Hide whitespace changes
Inline
Side-by-side
lib/aarch32/misc_helpers.S
View file @
13135323
/*
*
Copyright
(
c
)
2016
-
20
19
,
ARM
Limited
and
Contributors
.
All
rights
reserved
.
*
Copyright
(
c
)
2016
-
20
20
,
ARM
Limited
and
Contributors
.
All
rights
reserved
.
*
*
SPDX
-
License
-
Identifier
:
BSD
-
3
-
Clause
*/
...
...
@@ -149,17 +149,16 @@ m_loop4:
blo
m_loop1
ldr
r3
,
[
r1
],
#
4
str
r3
,
[
r0
],
#
4
sub
r2
,
r2
,
#
4
b
m_loop4
subs
r2
,
r2
,
#
4
bne
m_loop4
bx
lr
/*
copy
byte
per
byte
*/
m_loop1
:
cmp
r2
,#
0
beq
m_end
ldrb
r3
,
[
r1
],
#
1
strb
r3
,
[
r0
],
#
1
subs
r2
,
r2
,
#
1
bne
m_loop1
m_end
:
bx
lr
endfunc
memcpy4
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment