summaryrefslogtreecommitdiffstats
path: root/target/i386
Commit message (Expand)AuthorAgeFilesLines
* target/i386: Always completely initialize TranslateFaultRichard Henderson2022-12-011-15/+19
* target/i386: allow MMX instructions with CR4.OSFXSR=0Paolo Bonzini2022-12-011-1/+2
* target/i386: hardcode R_EAX as destination register for LAHF/SAHFPaolo Bonzini2022-11-151-2/+2
* target/i386: fix cmpxchg with 32-bit register destinationPaolo Bonzini2022-11-151-26/+56
* Merge tag 'for-upstream' of https://gitlab.com/bonzini/qemu into stagingStefan Hajnoczi2022-11-035-6/+18
|\
| * target/i386: Fix test for paging enabledRichard Henderson2022-11-021-5/+5
| * target/i386: Set maximum APIC ID to KVM prior to vCPU creationZeng Guang2022-10-313-0/+12
| * target/i386: Fix calculation of LOCK NEG eflagsQi Hu2022-10-311-1/+1
* | target/i386: Expand eflags updates inlineRichard Henderson2022-10-313-51/+25Star
* | accel/tcg: Remove will_exit argument from cpu_restore_stateRichard Henderson2022-10-311-1/+1
* | target/i386: Use cpu_unwind_state_data for tpr accessRichard Henderson2022-10-311-2/+23
|/
* Merge tag 'pull-tcg-20221026' of https://gitlab.com/rth7680/qemu into stagingStefan Hajnoczi2022-10-262-15/+19
|\
| * target/i386: Convert to tcg_ops restore_state_to_opcRichard Henderson2022-10-262-15/+19
* | Merge tag 'trivial-branch-for-7.2-pull-request' of https://gitlab.com/laurent...Stefan Hajnoczi2022-10-252-5/+3Star
|\ \ | |/ |/|
| * Drop useless casts from g_malloc() & friends to pointerMarkus Armbruster2022-10-222-5/+3Star
* | target/i386: implement FMA instructionsPaolo Bonzini2022-10-227-2/+134
* | target/i386: implement F16C instructionsPaolo Bonzini2022-10-207-4/+66
* | target/i386: introduce function to set rounding mode from FPCW or MXCSR bitsPaolo Bonzini2022-10-202-95/+25Star
* | target/i386: decode-new: avoid out-of-bounds access to xmm_regs[-1]Paolo Bonzini2022-10-201-1/+1
|/
* target/i386: remove old SSE decoderPaolo Bonzini2022-10-185-1907/+19Star
* target/i386: move 3DNow to the new decoderPaolo Bonzini2022-10-186-76/+74Star
* target/i386: Enable AVX cpuid bits when using TCGPaul Brook2022-10-181-5/+5
* target/i386: implement VLDMXCSR/VSTMXCSRPaolo Bonzini2022-10-182-0/+45
* target/i386: implement XSAVE and XRSTOR of AVX registersPaolo Bonzini2022-10-181-3/+75
* target/i386: reimplement 0x0f 0x28-0x2f, add AVXPaolo Bonzini2022-10-183-0/+185
* target/i386: reimplement 0x0f 0x10-0x17, add AVXPaolo Bonzini2022-10-185-0/+264
* target/i386: reimplement 0x0f 0xc2, 0xc4-0xc6, add AVXPaolo Bonzini2022-10-183-0/+81
* target/i386: reimplement 0x0f 0x38, add AVXPaolo Bonzini2022-10-186-8/+524
* target/i386: Use tcg gvec ops for pmovmskbRichard Henderson2022-10-181-5/+83
* target/i386: reimplement 0x0f 0x3a, add AVXPaolo Bonzini2022-10-185-1/+491
* target/i386: clarify (un)signedness of immediates from 0F3Ah opcodesPaolo Bonzini2022-10-182-5/+5
* target/i386: reimplement 0x0f 0xd0-0xd7, 0xe0-0xe7, 0xf0-0xf7, add AVXPaolo Bonzini2022-10-184-11/+122
* target/i386: reimplement 0x0f 0x70-0x77, add AVXPaolo Bonzini2022-10-183-6/+293
* target/i386: reimplement 0x0f 0x78-0x7f, add AVXPaolo Bonzini2022-10-183-0/+138
* target/i386: reimplement 0x0f 0x50-0x5f, add AVXPaolo Bonzini2022-10-183-1/+210
* target/i386: reimplement 0x0f 0xd8-0xdf, 0xe8-0xef, 0xf8-0xff, add AVXPaolo Bonzini2022-10-183-1/+63
* target/i386: reimplement 0x0f 0x60-0x6f, add AVXPaolo Bonzini2022-10-183-1/+262
* target/i386: Introduce 256-bit vector helpersPaolo Bonzini2022-10-184-0/+14
* target/i386: implement additional AVX comparison operatorsPaolo Bonzini2022-10-182-0/+65
* target/i386: provide 3-operand versions of unary scalar helpersPaolo Bonzini2022-10-183-25/+61
* target/i386: support operand merging in binary scalar helpersPaolo Bonzini2022-10-181-0/+16
* target/i386: extend helpers to support VEX.V 3- and 4- operand encodingsPaolo Bonzini2022-10-183-238/+265
* target/i386: Prepare ops_sse_header.h for 256 bit AVXPaul Brook2022-10-181-40/+76
* target/i386: move scalar 0F 38 and 0F 3A instruction to new decoderPaolo Bonzini2022-10-183-289/+321
* target/i386: validate SSE prefixes directly in the decoding tablePaolo Bonzini2022-10-182-0/+38
* target/i386: validate VEX prefixes via the instructions' exception classesPaolo Bonzini2022-10-184-12/+239
* target/i386: add AVX_EN hflagPaul Brook2022-10-183-0/+16
* target/i386: add CPUID feature checks to new decoderPaolo Bonzini2022-10-182-0/+75
* target/i386: add CPUID[EAX=7,ECX=0].ECX to DisasContextPaolo Bonzini2022-10-181-0/+2
* target/i386: add ALU load/writeback corePaolo Bonzini2022-10-184-1/+212