Lioncash
5f8e8ba92d
software_keyboard: Eliminate trivial redundant copies
We can just make use of moves here to get rid of two redundant copies
6 years ago
Morph
9c5847125f
main: Append AVX and FMA instructions to cpu string
Append AVX and FMA instructions to cpu string if the host cpu supports them
6 years ago
Morph
5482a4a272
common/telemetry: Add AVX512 to telemetry
6 years ago
Morph
d0a762a6a8
common/cpu_detect: Add AVX512 detection
6 years ago
Morph
1e9be249e1
decode/image: Implement B10G11R11F
- Used by Kirby Star Allies
6 years ago
bunnei
7612c56cff
Merge pull request #4099 from MerryMage/macOS-build
Fix compilation on macOS
6 years ago
Lioncash
64418ecaee
gl_arb_decompiler: Avoid several string copies
Variables that are marked as const cannot have the move constructor
invoked when returning from a function (the move constructor requires a
non-const variable so it can "steal" the resources from it.
6 years ago
Lioncash
9ba25c342f
vulkan/wrapper: Remove noexcept from GetSurfaceCapabilitiesKHR()
Check() can throw an exception if the Vulkan result isn't successful.
We remove the check so that std::terminate isn't outright called and
allows for better debugging (should it ever actually fail).
6 years ago
Lioncash
909f289531
macro_jit_x64: Correct readability of Compile_ExtractShiftLeftImmediate()
Previously dst wasn't being used.
6 years ago
Lioncash
d7fa20d641
macro_jit_x64: Correct readability of Compile_ExtractShiftLeftRegister()
Previously dst wasn't being used.
6 years ago
Lioncash
a99150a132
macro_jit_x64: Remove unused variable
Removes a completely unused label and marks another variable as unused,
given it seems like it has potential uses in the future.
6 years ago
Lioncash
693ec509d7
memory_manager: Eliminate variable shadowing
Renames some variables to prevent ones in inner scopes from shadowing
outer-scoped variables.
The Copy* functions have no shadowing, but we rename them anyways to
remain consistent with the other functions.
6 years ago
bunnei
d235ebeaf6
Merge pull request #4113 from ogniK5377/boxcat-disable
Fix compilation when not building with boxcat
6 years ago
David Marcec
55654b5a12
Add translation of "Current Boxcat Events"
6 years ago
Lioncash
f8e0f67e22
macro_jit_x64: Eliminate variable shadowing in Compile_ProcessResult()
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.
6 years ago
Lioncash
8e0a422ec3
buffer_cache: Eliminate local variable shadowing
We can just make use of the instance in the scope above this one.
6 years ago
bunnei
938e563cd7
Merge pull request #4087 from MerryMage/macrojit-inline-Read
macro_jit_x64: Inline Engines::Maxwell3D::GetRegisterValue
6 years ago
LC
7883f38d30
Merge pull request #4114 from MerryMage/nrvo
Remove redundant moves
6 years ago
MerryMage
b26ff8fa86
input_common/motion_emu: Remove redundant move
Named return value optimization automatically applies here.
6 years ago
MerryMage
38f25284c8
input_common/keyboard: Remove redundant move
Named return value optimization automatically applies here.
6 years ago
MerryMage
b8983782ca
mii_model: Remove redundant std::move
Named return value optimization automatically applies here.
6 years ago
David Marcec
39ef4c6d57
Fix compilation when not building with boxcat
Fixes compilation when trying to build without boxcat enabled
6 years ago
MerryMage
82b575087f
macro_jit_x64: Remove unused function Read
6 years ago
bunnei
8ccd0aa8af
Merge pull request #4080 from ogniK5377/audren-RendererInfo
audren: Implement RendererInfo
6 years ago
bunnei
9aecde9446
Merge pull request #4090 from MerryMage/macrojit-bugs
macro_jit_x64: Optimization correctness
6 years ago
ReinUsesLisp
3c9d7c54d9
vk_rasterizer: Don't preserve contents on full screen clears
There's no need to load contents from the CPU when a clear resets all
the contents of the underlying memory. This is already implemented on
OpenGL and the texture cache.
6 years ago
Rodrigo Locatti
1856dc775a
Merge pull request #4081 from Morph1984/maxwell-to-gl-vk
maxwell_to_gl/vk: Miscellaneous changes
6 years ago
ReinUsesLisp
31e538de2a
vk_update_descriptor: Upload descriptor sets data directly
Instead of copying to a temporary payload before sending the update task
to the worker thread, insert elements to the payload directly.
6 years ago
Fernando Sahmkow
02fe399e26
Tests/HostTiming: Correct GCC Compile error.
6 years ago
Fernando Sahmkow
51a1732324
Common/Fiber: Address Feedback and Correct Memory leaks.
6 years ago
Fernando Sahmkow
cffae9c733
Common/Fiber: Implement Rewind on Boost Context.
6 years ago
Fernando Sahmkow
f28670cd46
Common/uint128: Correct MSVC Compilation in old versions.
6 years ago
Fernando Sahmkow
f39a9f6efa
Common/Fiber: Document fiber interexchange.
6 years ago
Fernando Sahmkow
1460bdc5ab
Common/Fiber: Implement Rewinding.
6 years ago
Fernando Sahmkow
a42b226559
Common/Fiber: Additional corrections to f_context.
6 years ago
Fernando Sahmkow
89c691725c
Common/Fiber: Correct f_context based Fibers.
6 years ago
Fernando Sahmkow
b71488b850
Host Timing: Correct clang format.
6 years ago
Fernando Sahmkow
a427bf72ea
HostTiming: Correct rebase and implement AddTicks.
6 years ago
Fernando Sahmkow
e7f5b1f1d3
Core/HostTiming: Allow events to be advanced manually.
6 years ago
Fernando Sahmkow
564713fb46
Common/Tests: Address Feedback
6 years ago
Fernando Sahmkow
4e9a9e584c
Common: Make MinGW build use Windows Fibers instead of fcontext_t
6 years ago
Fernando Sahmkow
09d2ffa663
Common/Tests: Clang Format.
6 years ago
Fernando Sahmkow
91f138bd19
Common: Correct fcontext fibers.
6 years ago
Fernando Sahmkow
0c789667d9
Common: Refactor & Document Wall clock.
6 years ago
Fernando Sahmkow
ee32067b10
Common: Implement WallClock Interface and implement a native clock for x64
6 years ago
Fernando Sahmkow
ab76c0e296
Tests: Add base tests to host timing
6 years ago
Fernando Sahmkow
e99a10917e
Core: Implement a Host Timer.
6 years ago
Fernando Sahmkow
a1e7931d20
Common: Polish Fiber class, add comments, asserts and more tests.
6 years ago
Fernando Sahmkow
279ff1c0ff
Tests: Add tests for fibers and refactor/fix Fiber class
6 years ago
Fernando Sahmkow
353166d648
Common: Implement a basic Fiber class.
6 years ago