summaryrefslogtreecommitdiff
path: root/externals
AgeCommit message (Collapse)Author
2018-07-22externals: Update dynarmic to fc6b73bdMerryMage
Resolves issues: * 128-bit exclusive writes on Windows * Non-updating CNTPCT_EL0 fc6b73 a64_emit_x64: Ensure host has updated ticks in EmitA64GetCNTPCT 888c67 a64_emit_x64: Fix stack misalignment on Windows for 128-bit exclusive writes 352d53 emit_x64_aes: Eliminate extraneous usage of a scratch register in EmitAESInverseMixColumns() ab7fe7 A64: Implement SADDLV 09bd2b A64: Implement UADDLV 62e86d fp: Use forward declarations where applicable b3edb7 emit_x64_vector: Append 'v' prefix onto movq in AVX path
2018-07-21externals: Update dynarmic to 7ea1241Lioncash
Resolves an issue with TPIDR setting being erroneously removed in the dead code pass.
2018-07-20externals: Update glad to version 0.1.25Lioncash
Keeps the OpenGL loader library up to date. Previously we were at version 0.1.16
2018-07-19Merge pull request #708 from lioncash/xbyakbunnei
externals: Update Xbyak to 5.65
2018-07-19externals: Update Xbyak to 5.65Lioncash
Keeps the JIT assembler library up to date and ensures we don't run into any issues that may have been resolved.
2018-07-19externals: Update catch to v2.2.3Lioncash
Keeps the unit-testing library up to date.
2018-07-18Merge pull request #700 from bunnei/update-dynarmicbunnei
externals: Update dynarmic to 5a91c94.
2018-07-18externals: Update dynarmic to 5a91c94.bunnei
2018-07-18externals: update fmt to version 5.1.0Lioncash
Previously, we were on 4.1.0, which was a major version behind.
2018-07-15externals: Update dynarmic to dfdec79Lioncash
2018-07-11Merge pull request #585 from janisozaur/patch-11bunnei
Improve directory creation in WindowsCopyFiles.cmake
2018-07-06externals: Update dynarmic to f7d11baa1Lioncash
2018-06-24Improve directory creation in WindowsCopyFiles.cmakeMichał Janiszewski
2018-06-23Revert "Use Ninja for MSVC AppVeyor builds" (#584)bunnei
2018-06-05Use Ninja for MSVC AppVeyor buildsMichał Janiszewski
2018-05-23externals: Update dynarmicLioncash
Updates dynarmic to revision 990a569b7a5f2518fe08682f5ebf8536e5388d66
2018-04-28externals: Update dynarmicLioncash
Just a basic update to keep it in sync
2018-04-20externals: Update dynarmic to HEADLioncash
2018-04-05Update fmtlib to fix msvc warningsJames Rowe
Additionally, when updating fmtlib, there was a change in fmtlib broke how the old logging macro was overloaded, so this works around that by just naming the fmtlib macro impl something different
2018-04-03externals: Update fmt to 4d35f94Daniel Lim Wee Soong
Versions prior to this didn't compile on OpenBSD due to unconditional use of the non-standard strtod_l() function. The fmt::MemoryWriter API has been removed in the intervening versions, so replace its use with fmt::memory_buffer and fmt::format_to. The library also no longer provides the fmt::fmt ALIAS, so define it in externals/CMakeLists.txt.
2018-03-29dynarmic: Update to 9cc12d8MerryMage
9cc12d8 abi: Missing includes ac35ad5 emit_x64_floating_point: Near jump instead of short jump in FPMinNumberic{32,64} 6f03fdd A64: system: Use an enum class for MRS/MSR register encodings
2018-03-27dynarmic: Update to 12a1020MerryMage
12a1020 emit_X64_floating_point: Near jmp to end instead of short jmp 6278f83 emit_x64_vector: Fix typo in VectorShuffleImpl 25a0204 A64: Implement REV64 aa92e33 bit_util: Do nothing in RotateRight if the rotation amount is zero e537985 A64: Implement REV32 (vector) f62a258 ir: Add IR opcodes for emitting vector shuffles 36ac6ec emit_x64_vector_floating_point: Fix out of bounds array access in EmitVectorOperation64 20a59a9 A64: Implement REV16 (vector) b2f7bb0 CMakeLists: Add fp_util, macro_util and math_util headers fd21b58 A64: Implement EOR3 and BCAX a48c0bb travis: Use yuzu's unicorn fork 59e62e0 externals: Update catch to v2.2.1
2018-03-19externals: Update Glad to latest version used by Citra.bunnei
2018-02-21dynarmic: Update to 6b4c6b0MerryMage
6b4c6b0 impl: Update PC when raising exception 7a1313a A64: Implement FDIV (vector) b2d781d system: Raise exception for YIELD, WFE, WFI, SEV, SEVL b277bf5 Correct FPSR and FPCR 7673933 A64: Implement USHL 8d0e558 A64: Implement UCVTF (vector, integer), scalar variant da9a4f8 A64: Partially implement FCVTZU (scalar, fixed-point) and FCVTZS (scalar, fixed-point) 7479684 A64: Implement system register TPIDR_EL0 0fd75fd A64: Implement system registers FPCR and FPSR 31e370c A64: Implement system register CNTPCT_EL0 9a88fd3 A64: Implement system register CTR_EL0 1d16896 A64: Implement NEG (vector) 3184edf IR: Add IR instruction ZeroVector 31f8fbc emit_x64_floating_point: Add maybe_unused to preprocess parameter 567eb1a A64: Implement FMINNM (scalar) c6d8fa1 A64: Implement FMAXNM (scalar) 616056d constant_pool: Add frame parameter a3747cb A64: Implement ADDP (scalar) 5cd5d9f reg_alloc: Only exchange GPRs dd0452a A64: Implement DUP (element), scalar variant e5732ea emit_x64_floating_point: Correct FP{Max,Min}{32,64} implementations for -0/+0 40eb9c3 A64: Implement FMAX (scalar), FMIN (scalar) 7cef39b fuzz_with_unicorn: QEMU's implementation of FCVT is incorrect 826dce2 travis: Switch unicorn repository 9605f28 a64/config: Allow NaN emulation accuracy to be set e9435bc a64_emit_x64: Add conf to A64EmitContext 30b596d fuzz_with_unicorn: Explicitly test floating point instructions be292a8 A64: Implement FSQRT (scalar) 3c42d48 backend_x64: Accurately handle NaNs 4aefed0 fuzz_with_unicorn: Print AArch64 disassembly
2018-02-17updated dynarmicFernandoS27
2018-02-12arm_dynarmic: Support direct page table accessMerryMage
2018-02-09dynarmic: Fix bug due to Windows ABI mismatchMerryMage
2018-02-09dynarmic: Update to 41ae12263MerryMage
Changes: Primarily implementing more A64 instructions
2018-01-27externals: Update catch to v2.1.1Lioncash
2018-01-21externals: Update dynarmicMerryMage
a6d17e A64: Implement AND (vector) 963453 tests/A64: Randomize vectors adcd34 tests/A64/unicorn: Print interrupt number when InterruptHook is hit 304c91 tests/A64: Allow RunTestInstance to start from an arbitrary offset d333b5 A64: Implement ADD (vector, vector) 1cf87a A64: Implement REV, REV32, and REV16 (#126) 9fc157 IR: Simplify types. F32 -> U32, F64 -> U64, F128 -> U128 50c181 reg_alloc: GetBitWidth: Add UNREACHABLE adccbf reg_alloc: Consider bitwidth of data and registers when emitting instructions 7b7f23 A64: Implement CSEL 2f8413 IR: Implement Conditional Select ebb3e8 A64/tests: Split unicorn sanity checking from other tests 5740a0 tests/A64: Single random instruction: Test branch instructions as well 0892b4 A64/translate/branch: bug: Read-after-write error in BLR e77bc2 A64: Implement SBFM, BFM, UBFM 0c37ca A64: Implement MOVN, MOVZ, MOVK b6bb59 travis: Print current test information e77207 fuzz_thumb: Off by one error a04ca2 ir/location_descriptor: Add missing <functional> header for std::hash 1e0f5c travis: Run A64 tests
2018-01-18Merge pull request #84 from lioncash/cmakebunnei
CMakeLists: Derive the source directory grouping from targets themselves
2018-01-17CMakeLists: Derive the source directory grouping from targets themselvesLioncash
Removes the need to store to separate SRC and HEADER variables, and then construct the target in most cases.
2018-01-17externals: Update catch to 2.1.0Lioncash
2018-01-16Build: Add unicorn as a submodule and build it if neededJames Rowe
Adds a cmake custom target that will build unicorn on first compile and uses this in the build scripts as well. Updates Appveyor and Travis build scripts to work with the new unicorn build, and updates the paths to all of the different artifacts.
2018-01-15Fix some warningsunknown
2018-01-15Fix some warnings in the microprofileAndrix44
2018-01-14externals: Remove unused repos.bunnei
2018-01-13Update dynarmic to bc73004MerryMage
bc73004 a64_merge_interpret_blocks: Remove debug output 4e656ed tests/A64: Randomize PSTATE.<NZCV> fd9530b A64: Optimization: Merge interpret blocks 3c9eb04 testenv: Use format constants 324f3fc tests/A64: Unicorn interface fixes 98ecbe7 tests/A64: Fuzz against unicorn b1d38e7 tests/A64: Move TestEnvironment to own header 5218ad9 A64/data_processing_pcrel: bug: ADR{,P} instructions sign extend their immediate b1a8c39 A64/data_processing_addsub: bug: {ADD,SUB}S (extended register) instructions write to ZR when d = 31 64827fb a64_emit_x64: bug: A64CallSupervisor trampled callee-save registers 1bfa04d emit_x64: bug: OP m/r64, imm32 form instructions sign-extend their immediate on x64 edadeea A64 inferface: Use two argument static_assert 9ab1304 A64: Add ExceptionRaised IR instruction 6843eed Update readme 7438d07 A64/translate: Add TranslateSingleInstruction function
2018-01-12Massive removal of unused modulesJames Rowe
2018-01-12boost: Update version.bunnei
2018-01-12core: Gut out cryptop, since it doesn't compile with C++17.bunnei
2018-01-12dynarmic: Update to 83afe435MerryMage
2018-01-12arm_dynarmic: Implement coreMerryMage
2018-01-08fix macos buildMerryMage
2018-01-04cmake: Add script to find Unicorn.bunnei
2018-01-04cmake: Don't compile Dynarmic as it's unused.bunnei
2018-01-03externals: Point dynarmic at a real commit.bunnei
2017-10-25externals: Update dynarmic and xbyak.bunnei
2017-10-09Merge remote-tracking branch 'upstream/master' into nxbunnei
# Conflicts: # src/core/CMakeLists.txt # src/core/arm/dynarmic/arm_dynarmic.cpp # src/core/arm/dyncom/arm_dyncom.cpp # src/core/hle/kernel/process.cpp # src/core/hle/kernel/thread.cpp # src/core/hle/kernel/thread.h # src/core/hle/kernel/vm_manager.cpp # src/core/loader/3dsx.cpp # src/core/loader/elf.cpp # src/core/loader/ncch.cpp # src/core/memory.cpp # src/core/memory.h # src/core/memory_setup.h
2017-09-30externals: Add lz4.bunnei