Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
Suyu
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
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
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
many-archive
Suyu
Commits
60749f2c
There was an error fetching the commit references. Please try again later.
Commit
60749f2c
authored
8 years ago
by
bunnei
Browse files
Options
Downloads
Patches
Plain Diff
shader_jit_x64: Use CALL/RET instead of JMP for subroutines.
parent
507e0b59
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
src/video_core/shader/shader_jit_x64.cpp
+7
-17
7 additions, 17 deletions
src/video_core/shader/shader_jit_x64.cpp
with
7 additions
and
17 deletions
src/video_core/shader/shader_jit_x64.cpp
+
7
−
17
View file @
60749f2c
...
@@ -583,23 +583,15 @@ void JitCompiler::Compile_END(Instruction instr) {
...
@@ -583,23 +583,15 @@ void JitCompiler::Compile_END(Instruction instr) {
}
}
void
JitCompiler
::
Compile_CALL
(
Instruction
instr
)
{
void
JitCompiler
::
Compile_CALL
(
Instruction
instr
)
{
// Need to advance the return address past the proceeding instructions, this is the number of bytes to skip
constexpr
unsigned
SKIP
=
21
;
const
uintptr_t
start
=
reinterpret_cast
<
uintptr_t
>
(
GetCodePtr
());
// Push return address - not using CALL because we also want to push the offset of the return before jumping
MOV
(
64
,
R
(
RAX
),
ImmPtr
(
GetCodePtr
()
+
SKIP
));
PUSH
(
RAX
);
// Push offset of the return
// Push offset of the return
PUSH
(
32
,
Imm32
(
instr
.
flow_control
.
dest_offset
+
instr
.
flow_control
.
num_instructions
));
PUSH
(
64
,
Imm32
(
instr
.
flow_control
.
dest_offset
+
instr
.
flow_control
.
num_instructions
));
//
Jump
//
Call the subroutine
FixupBranch
b
=
J
(
true
);
FixupBranch
b
=
CALL
(
);
fixup_branches
.
push_back
({
b
,
instr
.
flow_control
.
dest_offset
});
fixup_branches
.
push_back
({
b
,
instr
.
flow_control
.
dest_offset
});
//
Make sure that if the above code changes, SKIP gets updated
//
Skip over the return offset that's on the stack
A
SSERT
(
reinterpret_cast
<
ptrdiff_t
>
(
GetCodePtr
())
-
start
==
SKIP
);
A
DD
(
64
,
R
(
RSP
),
Imm32
(
8
)
);
}
}
void
JitCompiler
::
Compile_CALLC
(
Instruction
instr
)
{
void
JitCompiler
::
Compile_CALLC
(
Instruction
instr
)
{
...
@@ -758,14 +750,12 @@ void JitCompiler::Compile_Block(unsigned end) {
...
@@ -758,14 +750,12 @@ void JitCompiler::Compile_Block(unsigned end) {
void
JitCompiler
::
Compile_Return
()
{
void
JitCompiler
::
Compile_Return
()
{
// Peek return offset on the stack and check if we're at that offset
// Peek return offset on the stack and check if we're at that offset
MOV
(
64
,
R
(
RAX
),
MDisp
(
RSP
,
0
));
MOV
(
64
,
R
(
RAX
),
MDisp
(
RSP
,
8
));
CMP
(
32
,
R
(
RAX
),
Imm32
(
program_counter
));
CMP
(
32
,
R
(
RAX
),
Imm32
(
program_counter
));
// If so, jump back to before CALL
// If so, jump back to before CALL
FixupBranch
b
=
J_CC
(
CC_NZ
,
true
);
FixupBranch
b
=
J_CC
(
CC_NZ
,
true
);
ADD
(
64
,
R
(
RSP
),
Imm32
(
8
));
// Ignore return offset that's on the stack
RET
();
POP
(
RAX
);
// Pop off return address
JMPptr
(
R
(
RAX
));
SetJumpTarget
(
b
);
SetJumpTarget
(
b
);
}
}
...
...
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