summaryrefslogtreecommitdiffstats
path: root/src/video_core/macro/macro_jit_x64.cpp (unfollow)
Commit message (Collapse)AuthorFilesLines
2022-11-14Add break for default casesKyle Kienapfel1-0/+1
Visual Studio has an option to search all files in a solution, so I did a search in there for "default:" looking for any missing break statements. I've left out default statements that return something, and that throw something, even if via ThrowInvalidType. UNREACHABLE leads towards throw R_THROW macro leads towards a return
2022-10-21video_coare: Reimplementing the maxwell drawing trigger mechanismFengChen1-1/+1
2022-10-02macro_jit_x64: fix miscompilation of bit extraction operationsLiam1-37/+9
2022-10-01macro_jit_x64: cancel exit for taken branchLiam1-11/+5
2022-06-14general: fix compilation on MinGW GCC 12Liam1-1/+1
2022-05-08video_core/macro_jit_x64: warn on invalid parameter accessLiam1-3/+21
2022-04-23general: Convert source file copyright comments over to SPDXMorph1-3/+2
This formats all copyright comments according to SPDX formatting guidelines. Additionally, this resolves the remaining GPLv2 only licensed files by relicensing them to GPLv2.0-or-later.
2022-01-26common/xbyak_api: Make BuildRegSet() constexprLioncash1-1/+1
This allows us to eliminate any static constructors that would have been emitted due to the function not being constexpr.
2022-01-25video_core/macro_jit_x64: Remove unused impl class memberLioncash1-1/+0
Reduces the size of the impl class a tiny bit.
2022-01-25video_core/macro_jit_x64: Decouple PersistentCallerSavedRegs() from implLioncash1-5/+4
This doesn't depend on class state and can just be a regular function.
2022-01-25video_core/macro_jit_x64: Move impl class into cpp fileLioncash1-16/+86
Keeps the implementation internalized and also reduces API-facing header dependencies. Notably, this fully internalizes all of the xbyak externals.
2020-12-07video_core: Remove unnecessary enum class casting in logging messagesLioncash1-3/+2
fmt now automatically prints the numeric value of an enum class member by default, so we don't need to use casts any more. Reduces the line noise a bit.
2020-12-04video_core: Resolve more variable shadowing scenariosLioncash1-8/+8
Resolves variable shadowing scenarios up to the end of the OpenGL code to make it nicer to review. The rest will be resolved in a following commit.
2020-08-30externals: Update Xbyak to 5.96Lioncash1-5/+5
I made a request on the Xbyak issue tracker to allow some constructors to be constexpr in order to avoid static constructors from needing to execute for some of our register constants. This request was implemented, so this updates Xbyak so that we can make use of it.
2020-07-21video_core: Remove unused variablesLioncash1-1/+0
Silences several compiler warnings about unused variables.
2020-06-24Macro HLE supportDavid Marcec1-1/+2
2020-06-20macro_jit_x64: Use ecx for shift registerMerryMage1-2/+2
shl/shr only accept cl as their second argument
2020-06-20macro_jit_x64: Correct readability of Compile_ExtractShiftLeftImmediate()Lioncash1-3/+3
Previously dst wasn't being used.
2020-06-20macro_jit_x64: Correct readability of Compile_ExtractShiftLeftRegister()Lioncash1-3/+4
Previously dst wasn't being used.
2020-06-20macro_jit_x64: Remove unused variableLioncash1-2/+1
Removes a completely unused label and marks another variable as unused, given it seems like it has potential uses in the future.
2020-06-20macro_jit_x64: Eliminate variable shadowing in Compile_ProcessResult()Lioncash1-2/+2
We can reduce the capture scope so that it's not possible for both "reg" variables to clash with one another. While we're at it, we can prevent unnecessary copies while we're at it.
2020-06-19macro_jit_x64: Remove unused function ReadMerryMage1-8/+4
2020-06-17macro_jit_x64: Inline Engines::Maxwell3D::GetRegisterValueMerryMage1-6/+17
2020-06-17macro_jit_x64: Optimization implicitly assumes same destinationMerryMage1-1/+2
2020-06-17macro_jit_x64: Should not skip zero registers for certain ALU opsMerryMage1-1/+3
The code generated for these ALU ops assume src_a and src_b are always valid.
2020-06-15macro_jit_x64: Remove NEXT_PARAMETERMerryMage1-5/+2
Not required, as PARAMETERS can just be incremented directly.
2020-06-15macro_jit_x64: Remove unused function Compile_WriteCarryMerryMage1-8/+0
2020-06-15macro_jit_x64: Select better registersMerryMage1-8/+8
All registers are now callee-save registers. RBX and RBP selected for STATE and RESULT because these are most commonly accessed; this is to avoid the REX prefix. RBP not used for STATE because there are some SIB restrictions, RBX emits smaller code.
2020-06-15macro_jit_x64: Remove REGISTERSMerryMage1-7/+3
Unnecessary since this is just an offset from STATE.
2020-06-15macro_jit_x64: Remove JITState::parametersMerryMage1-4/+2
This can be passed in as an argument instead.
2020-06-15macro_jit_x64: Remove METHOD_ADDRESS_64MerryMage1-2/+1
Unnecessary variable.
2020-06-15macro_jit_x64: Remove RESULT_64MerryMage1-15/+3
This Reg64 codepath has the exact same behaviour as the Reg32 one.
2020-06-15xbyak_abi: Remove *GPS variants of stack manipulation functionsMerryMage1-6/+6
2020-06-03Mark parameters as constDavid Marcec1-1/+1
2020-05-30Favor switch case over jump tableDavid Marcec1-18/+25
Easier to read and will emit a jump table automatically.
2020-05-30Implement macro JITDavid Marcec1-0/+633