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
1799f4e7
There was an error fetching the commit references. Please try again later.
Commit
1799f4e7
authored
4 years ago
by
MerryMage
Browse files
Options
Downloads
Patches
Plain Diff
macro_jit_x64: Remove unused function Compile_WriteCarry
parent
c09a9e5c
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/video_core/macro/macro_jit_x64.cpp
+0
-8
0 additions, 8 deletions
src/video_core/macro/macro_jit_x64.cpp
src/video_core/macro/macro_jit_x64.h
+0
-1
0 additions, 1 deletion
src/video_core/macro/macro_jit_x64.h
with
0 additions
and
9 deletions
src/video_core/macro/macro_jit_x64.cpp
+
0
−
8
View file @
1799f4e7
...
@@ -545,14 +545,6 @@ Xbyak::Reg32 MacroJITx64Impl::Compile_GetRegister(u32 index, Xbyak::Reg32 dst) {
...
@@ -545,14 +545,6 @@ Xbyak::Reg32 MacroJITx64Impl::Compile_GetRegister(u32 index, Xbyak::Reg32 dst) {
return
dst
;
return
dst
;
}
}
void
Tegra
::
MacroJITx64Impl
::
Compile_WriteCarry
(
Xbyak
::
Reg64
dst
)
{
Xbyak
::
Label
zero
{},
end
{};
xor_
(
ecx
,
ecx
);
shr
(
dst
,
32
);
setne
(
cl
);
mov
(
dword
[
STATE
+
offsetof
(
JITState
,
carry_flag
)],
ecx
);
}
void
MacroJITx64Impl
::
Compile_ProcessResult
(
Macro
::
ResultOperation
operation
,
u32
reg
)
{
void
MacroJITx64Impl
::
Compile_ProcessResult
(
Macro
::
ResultOperation
operation
,
u32
reg
)
{
auto
SetRegister
=
[
=
](
u32
reg
,
Xbyak
::
Reg32
result
)
{
auto
SetRegister
=
[
=
](
u32
reg
,
Xbyak
::
Reg32
result
)
{
// Register 0 is supposed to always return 0. NOP is implemented as a store to the zero
// Register 0 is supposed to always return 0. NOP is implemented as a store to the zero
...
...
This diff is collapsed.
Click to expand it.
src/video_core/macro/macro_jit_x64.h
+
0
−
1
View file @
1799f4e7
...
@@ -55,7 +55,6 @@ private:
...
@@ -55,7 +55,6 @@ private:
Xbyak
::
Reg32
Compile_FetchParameter
();
Xbyak
::
Reg32
Compile_FetchParameter
();
Xbyak
::
Reg32
Compile_GetRegister
(
u32
index
,
Xbyak
::
Reg32
dst
);
Xbyak
::
Reg32
Compile_GetRegister
(
u32
index
,
Xbyak
::
Reg32
dst
);
void
Compile_WriteCarry
(
Xbyak
::
Reg64
dst
);
void
Compile_ProcessResult
(
Macro
::
ResultOperation
operation
,
u32
reg
);
void
Compile_ProcessResult
(
Macro
::
ResultOperation
operation
,
u32
reg
);
void
Compile_Send
(
Xbyak
::
Reg32
value
);
void
Compile_Send
(
Xbyak
::
Reg32
value
);
...
...
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