about summary refs log tree commit diff stats
path: root/src/tools (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Small cleanup in my_cpuidptitSeb2024-05-271-1/+1
|
* [INTERPRETER] my first avx opcodeptitSeb2024-05-262-0/+3
|
* more avx infrastructureptitSeb2024-05-241-5/+12
|
* Added support for XSAVE/XRSTOR ([ARM64_DYNAREC] too)ptitSeb2024-05-241-8/+28
|
* Changed the workaround for MiniMetro/Steam, using rcfile now (for #1311)ptitSeb2024-05-091-0/+8
|
* This should fix non-dynarec buildptitSeb2024-04-291-0/+2
|
* Fixed non-dynarec build by introducing BOX64_JVM to replace BOX64_DYNAREC_JVMptitSeb2024-04-291-0/+4
|
* Added a way to hide SSE 4.2, as it might slow down things using the string ↵ptitSeb2024-04-292-1/+2
| | | | opcodes. Also, looks like some java program have issue with current implementation of pcmp[ei]str[im] somehow, so diabling automaticaly when detecting libjvm.so (for SlayTheSpire in particular)
* Changed how wine prereserve is handled on box64ptitSeb2024-04-271-6/+2
|
* Fixed a few warning here and there...ptitSeb2024-04-131-1/+2
|
* Revert some cpuid changes, they are more wrong then right it seemsptitSeb2024-04-121-2/+2
|
* Wrapped GstAudioFilter (for #1397)ptitSeb2024-04-031-0/+42
|
* [RCFILE] Make sure strdup is coherent with freeptitSeb2024-04-031-4/+4
|
* Added some path for termux/glibc buildsptitSeb2024-03-271-6/+7
|
* Changed, again, RDTSC and Hardware counter, introducing auto calibration ↵ptitSeb2024-03-141-17/+1
| | | | when hardware counter is too slow for modern standard (and removed BOX64_RDTSC env. var.)
* [RCFILE] Added 2 new rcfile only option, and try to apply wine program ↵ptitSeb2024-03-121-13/+30
| | | | parameter earlier, before wien load to be able to change command line and maxcpu
* Changed how cpu cores are reported in cpuid for large number (>64)ptitSeb2024-03-121-2/+9
|
* Do not expose FMA cpu extension, it's associated to AVX by some enginesptitSeb2024-03-111-3/+4
|
* [TRACE] slignthly better log for ExitEmulation bridgeptitSeb2024-03-101-2/+4
|
* Don't expose BMI1 for now, it's not really supportedptitSeb2024-03-101-1/+1
|
* More work on X11 wrapping, allowing gtk to run fully emulatedptitSeb2024-03-072-9/+3
|
* Added back full handling of winepreloader prereserve memoryptitSeb2024-03-061-1/+2
|
* [RV64_INTERP] Added TSC freq support (#1293)Yang Liu2024-02-281-1/+1
| | | | | * [RV64_INTERP] Added TSC freq support * Simplify
* Added empty command 14 to CPUIDptitSeb2024-02-271-0/+11
|
* Added ability to staticaly build box64 (for #1045 and #310, maybe a few ↵ptitSeb2024-02-261-1/+4
| | | | others tickets)
* Improved cpu detection for cpuidptitSeb2024-02-241-7/+38
|
* Fix Android buildsptitSeb2024-02-231-0/+1
|
* Better handling of Hardware counter for rdtsc emulation (ARM64 only for ↵ptitSeb2024-02-232-2/+45
| | | | now), more cpuid leafs, and introduce BOX64_RDTSC env.var. with a profile that use it
* [ELFLOADER] Huge refactor of elfloader and symbol resolution. Some more ↵ptitSeb2024-02-151-1/+1
| | | | cleaning need to be done, but that's a first step (should help #422, #360, #1046 and probably others)
* [ARM64_DYNAREC] Reworked, again, strongmem emulationptitSeb2024-02-061-1/+1
|
* [ARM64_DYNAREC] Added BOX64_DYNAREC_DIV0 option to check/trigger Divide by 0 ↵ptitSeb2024-02-051-0/+3
| | | | when needed
* [DYNAREC_TEST] Force enabled x87double when using DYNAREC_TEST to limit ↵ptitSeb2024-02-031-0/+1
| | | | false positive
* [DYNAREC] Improved trace a bitptitSeb2024-02-011-1/+1
|
* Made PageSize detection / Handling dynamic. nd fixed elfloading for pagesize ↵ptitSeb2024-01-311-9/+2
| | | | not 4K. The define are still there but might be removed shortly (for #1231, #1226, #1189, #1175, #999, #384 and probably a few other)
* [RCFIEL] Fixed BOX64_IGNOREINT3ptitSeb2024-01-281-1/+1
|
* Added BOX64_IGNOREINT3 env. var. to ignore INT3 in the code ([RCFILE] too)ptitSeb2024-01-271-0/+1
|
* Added a new option BOX64_MMAP32 to use 32bits mapping on external MMAP (help ↵ptitSeb2024-01-232-5/+5
| | | | Snapdragon device running Vulkan with Wine/Wow64, active by default on SD845/SD888/SD8G2 profiles)
* [DYNAREC] use an rbtree for dynablock size and max_db_size updateptitSeb2024-01-231-0/+14
|
* Fixes (#1207)rajdakin2024-01-182-10/+12
| | | | | | | | | | | * Fixed signed/unsigned issues and other cosmetics * [WRAPPERS] Fixed missing `return`s in `my_` functions * [EMU] More fixes * [STEAM] Forgot one cleanup * [WRAPPER] Fixed wrappedpulse callback signatures
* Ficxed an issue with rbtree rb_get_end utility functionptitSeb2024-01-161-3/+4
|
* [RBTREE] Reverted memory tracking to 32 bits (#1201)rajdakin2024-01-131-9/+9
|
* [RCFILE] Added more option to rcfile and added geekbench5 profileptitSeb2024-01-061-0/+20
|
* [RCFILE] Add a function to quickly get current process nameptitSeb2024-01-021-1/+5
|
* Fixed issue on rbtree on rb_get_end when end is another blockptitSeb2023-12-311-13/+19
|
* [MEMORY] Switched from a sparse array to a red-black tree (#1180)rajdakin2023-12-312-2/+896
| | | | | * [MEMORY] Switched from a sparse array to an RB tree * [RBTREE] Fixed the Android build
* [RCFILE] Made so that BOX64_MAXCPU is the minimum value if set both on ↵ptitSeb2023-12-231-1/+6
| | | | command line and a/many profile
* Cleanup some code (#1157)xctan2023-12-231-1/+1
| | | | | * Fix the size of random bytes in the auxiliary vector (AT_RANDOM) to 16 bytes * [ELFLOADER] Remove an unused statement
* Introduce new BOX64_MAXCPU to cap the number of cpu core exposed, and ↵ptitSeb2023-12-212-2/+3
| | | | created profile for wine, wine64 and GridAutosport using it
* [RCFILE] Fixed file leakptitSeb2023-12-181-0/+1
|
* Limit the number of CPU Core repported to 64 when running wine (or proton)ptitSeb2023-12-151-0/+2
|