Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
linux
Commits
0fb1f35e
Commit
0fb1f35e
authored
Feb 11, 2015
by
Vineet Gupta
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ARCv2: mm: TLB Miss optim: Use double world load/stores LDD/STD
Signed-off-by:
Vineet Gupta
<
vgupta@synopsys.com
>
parent
cfd9d70a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
0 deletions
+10
-0
arch/arc/mm/tlbex.S
arch/arc/mm/tlbex.S
+10
-0
No files found.
arch/arc/mm/tlbex.S
View file @
0fb1f35e
...
...
@@ -122,17 +122,27 @@ ex_saved_reg1:
#else /* ARCv2 */
.
macro
TLBMISS_FREEUP_REGS
#ifdef CONFIG_ARC_HAS_LL64
std
r0
,
[
sp
,
-
16
]
std
r2
,
[
sp
,
-
8
]
#else
PUSH
r0
PUSH
r1
PUSH
r2
PUSH
r3
#endif
.
endm
.
macro
TLBMISS_RESTORE_REGS
#ifdef CONFIG_ARC_HAS_LL64
ldd
r0
,
[
sp
,
-
16
]
ldd
r2
,
[
sp
,
-
8
]
#else
POP
r3
POP
r2
POP
r1
POP
r0
#endif
.
endm
#endif
...
...
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