about summary refs log tree commit diff stats
path: root/src/tools/my_cpuid.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Small fix for XSAVE/XRSTOR opcodes ([DYNAREC] too)ptitSeb2024-11-211-1/+1
|
* Expose a few more CPU featuresptitSeb2024-11-161-0/+7
|
* Added support for RDMSR, just in caseptitSeb2024-11-151-0/+1
|
* Added BOX64_SHAEXT to hide sha cpu extension ([RCFILE] And added a profile ↵ptitSeb2024-07-151-1/+1
| | | | using it)
* Fixes (#1659)rajdakin2024-07-091-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Replaced some tabs with spaces * Fixed some signedness warnings * Added more debug info * Fixed an improper alignment * [WRAPPEDWAYLAND] Added return statements to wrappers * [EMU] [AVX] Fixed some issues * [ARM DYNAREC] Fixed some minor warnings * [ARM DYNAREC] Removed unused macro arguments * [EMU] Fixed a noisy warning * [ARM DYNAREC] Removed "empty body" warnings * [EMU] Fixed an opcode in dynarec, non-cosim builds * [LA64 DYNAREC] Minor warning fixes * [LA64 DYNAREC] Fixed empty body warnings * [LA64 DYNAREC] Added parenthesis around assignments in if statements * [LA64 DYNAREC] Fixed missing parenthesis in macro definitions * [RV64 DYNAREC] Fixed minor warnings * [RV64 DYNAREC] Fixed wrong/missing parentheses * [WRAPPER] Fixed the WaylandClient callback signatures
* Cosmetic changeptitSeb2024-07-051-1/+2
|
* Improved CPUID a bit more, adding RDRAND (helps geekbench6 avx2 version)ptitSeb2024-06-241-4/+55
|
* Improved handling of cpuid leaf 0x80000006ptitSeb2024-06-221-1/+1
|
* Fixed usage of getcpu, only enablign that for recent enough glibc (should ↵ptitSeb2024-06-171-1/+3
| | | | help #1586)
* [ANDROID] This should fix android buildptitSeb2024-06-131-0/+2
|
* More work on RDTSC emulationptitSeb2024-06-131-0/+7
|
* Only expose xsave extension if avx is usedptitSeb2024-06-071-2/+2
|
* [INTERPRETER] Added suport for F16C extension (linked to AVX flag) ↵ptitSeb2024-06-061-1/+1
| | | | ([ARM64_DYNAREC] too)
* Disable F16C for now, it's not ready yetptitSeb2024-06-061-1/+1
|
* [ARM64_DYNAREC] Added a new small batch of AVX/BMI2 opcodesptitSeb2024-06-061-1/+2
|
* [INTERPRETER] Added FMA cpu extension (linked to BOX64_AVX=2)ptitSeb2024-06-021-1/+1
|
* [INTERPRETER] Added BMI1, BMI2 and ADX extensionsptitSeb2024-05-311-2/+3
|
* [INTERPRETER] More avx, avx2 and vaes opcodesptitSeb2024-05-281-0/+1
|
* Fixed cpuid leaf d, component 2 (fixes wine 9.6+ not booting)ptitSeb2024-05-271-14/+0
|
* More avx infrastructureptitSeb2024-05-271-0/+1
|
* Small cleanup in my_cpuidptitSeb2024-05-271-1/+1
|
* [INTERPRETER] my first avx opcodeptitSeb2024-05-261-0/+2
|
* more avx infrastructureptitSeb2024-05-241-5/+12
|
* Added support for XSAVE/XRSTOR ([ARM64_DYNAREC] too)ptitSeb2024-05-241-8/+28
|
* Added a way to hide SSE 4.2, as it might slow down things using the string ↵ptitSeb2024-04-291-1/+1
| | | | 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)
* Revert some cpuid changes, they are more wrong then right it seemsptitSeb2024-04-121-2/+2
|
* 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
|
* Don't expose BMI1 for now, it's not really supportedptitSeb2024-03-101-1/+1
|
* 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-231-2/+27
| | | | now), more cpuid leafs, and introduce BOX64_RDTSC env.var. with a profile that use it
* Fixes (#1207)rajdakin2024-01-181-2/+2
| | | | | | | | | | | * 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
* Introduce new BOX64_MAXCPU to cap the number of cpu core exposed, and ↵ptitSeb2023-12-211-2/+2
| | | | created profile for wine, wine64 and GridAutosport using it
* Limit the number of CPU Core repported to 64 when running wine (or proton)ptitSeb2023-12-151-0/+2
|
* Some small changes to cpuid and exposed BMI1ptitSeb2023-11-221-2/+23
|
* Fixed cpu name gatheringptitSeb2023-11-221-4/+6
|
* Added full support for the SHA cpu extensionptitSeb2023-11-211-4/+5
|
* Added full SSE 4.2 supportptitSeb2023-10-301-0/+3
|
* Small change on cpuid stuffsptitSeb2023-10-291-5/+6
|
* A bit more changes to cpuid bits and cpu identificationsptitSeb2023-10-111-6/+6
|
* Small change on cpuid feature flags for leaf 0x80000001ptitSeb2023-10-111-3/+8
|
* Fixed processor/core count in cpuid and proc/cpuinfoptitSeb2023-10-101-8/+102
|
* Improved cpu speed detectionptitSeb2023-10-071-2/+28
|
* [32BITS] Fixed an issue with 66 A1/A3 opcodesptitSeb2023-06-181-2/+4
|
* Expose POPCNT capability tooptitSeb2023-03-121-0/+1
|
* Added support for SSE4.1, and added a couple of opcode ([ARM64_DYNAREC] too)ptitSeb2023-03-121-0/+1
|
* Change branding of Cpu to refect Box64 and the cpu it's running onptitSeb2023-03-061-27/+35
|