Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
295a300
Ensure floating-point codegen uses the VEX aware path
tannergooding Apr 27, 2023
cd59adb
Fix `IF_RRW_RRW_CNS` to be `IF_RWR_RRD_CNS`
tannergooding Apr 26, 2023
30a0ff9
Fixup emitfmtsxarch.h to have a more consistent layout
tannergooding Apr 28, 2023
9f62010
Allow querying the scheduling info for an insFormat
tannergooding Apr 28, 2023
4b42794
Ensure the new insFormats are handled
tannergooding Apr 28, 2023
e7cfb3e
Ensure we consistently use `emitInsModeFormat`
tannergooding Apr 27, 2023
d39df96
Ensure instructions which write to a mask register are EVEX only
tannergooding Apr 28, 2023
820e7fc
Improve REX.W handling for EVEX only instructions
tannergooding Apr 28, 2023
5dbc5af
Ensure that instructions use the right update mode and tuple type
tannergooding Apr 28, 2023
28cdc15
Apply formatting patch
tannergooding Apr 28, 2023
d13305d
Ensure DstSrcSrc is still handled correctly
tannergooding Apr 28, 2023
03814a2
Ensure BLSI/BLSR are still handled in emitOutputAM
tannergooding Apr 28, 2023
379b4ab
Use static_assert_no_msg
tannergooding Apr 28, 2023
9befa4f
Fixing the disassembly for IF_RRW_SHF
tannergooding Apr 28, 2023
d4f6a95
Fixing the IF check for shld/shrd on x86
tannergooding Apr 28, 2023
992a3f2
Use the correct name: inst_RV_TT_IV
tannergooding Apr 28, 2023
312c3e0
Ensure the 4 operand insFormats include the necessary constant
tannergooding Apr 29, 2023
fa8677b
Resolve an insFormat check on x86
tannergooding Apr 30, 2023
8e5475f
Ensure other SIMD code paths are VEX aware
tannergooding Apr 30, 2023
a81c703
Improve throughput by using a less expensive emitSizeOfInsDsc
tannergooding Apr 30, 2023
749db73
Merge remote-tracking branch 'dotnet/main' into xarch-improv
tannergooding Apr 30, 2023
2142183
Apply formatting patch
tannergooding Apr 30, 2023
8884ec7
Ensure emitSizeOfInsDsc_CNS is used for RWR_RRD_*RD_CNS
tannergooding Apr 30, 2023
a318b17
Ensure genSimd12UpperClear uses `andps` for the pre-SSE4.1 path
tannergooding May 1, 2023
1c60535
Merge remote-tracking branch 'dotnet/main' into xarch-improv
tannergooding May 1, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Use the correct name: inst_RV_TT_IV
  • Loading branch information
tannergooding committed Apr 28, 2023
commit 992a3f2df1847330c53fd9bc314cbeeacc005507
2 changes: 1 addition & 1 deletion src/coreclr/jit/codegenxarch.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -8016,7 +8016,7 @@ void CodeGen::genSSE41RoundOp(GenTreeOp* treeNode)
bool isRMW = !compiler->canUseVexEncoding();
inst_RV_RV_TT_IV(ins, size, dstReg, dstReg, srcNode, ival, isRMW);
#else
inst_RV_TV_IV(ins, size, dstReg, srcNode->GetRegNum(), ival);
inst_RV_TT_IV(ins, size, dstReg, srcNode, ival);
#endif
}

Expand Down