Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
osv
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Verlässliche Systemsoftware
projects
osv
Commits
abe38111
Commit
abe38111
authored
10 years ago
by
Claudio Fontana
Browse files
Options
Downloads
Patches
Plain Diff
aarch64: remove some verbosity from processor.hh
Signed-off-by:
Claudio Fontana
<
claudio.fontana@huawei.com
>
parent
d7bc664c
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
arch/aarch64/processor.hh
+0
-4
0 additions, 4 deletions
arch/aarch64/processor.hh
with
0 additions
and
4 deletions
arch/aarch64/processor.hh
+
0
−
4
View file @
abe38111
...
...
@@ -80,8 +80,6 @@ struct fpu_state {
inline
void
fpu_state_save
(
fpu_state
*
s
)
{
debug_early_entry
(
"fpu_state_save(s)"
);
asm
volatile
(
"stp q0, q1, %0"
:
"=Ump"
(
s
->
vregs
[
0
])
::
"memory"
);
asm
volatile
(
"stp q2, q3, %0"
:
"=Ump"
(
s
->
vregs
[
2
])
::
"memory"
);
asm
volatile
(
"stp q4, q5, %0"
:
"=Ump"
(
s
->
vregs
[
4
])
::
"memory"
);
...
...
@@ -105,8 +103,6 @@ inline void fpu_state_save(fpu_state *s)
inline
void
fpu_state_load
(
fpu_state
*
s
)
{
debug_early_entry
(
"fpu_state_load(s)"
);
asm
volatile
(
"ldp q0, q1, %0"
::
"Ump"
(
s
->
vregs
[
0
])
:
"q0"
,
"q1"
);
asm
volatile
(
"ldp q2, q3, %0"
::
"Ump"
(
s
->
vregs
[
2
])
:
"q2"
,
"q3"
);
asm
volatile
(
"ldp q4, q5, %0"
::
"Ump"
(
s
->
vregs
[
4
])
:
"q4"
,
"q5"
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment