Searched refs:GET_EGPR_IF_ENABLED (Results 1 – 7 of 7) sorted by relevance
| /freebsd/contrib/llvm-project/llvm/lib/Target/X86/ |
| H A D | X86DomainReassignment.cpp | 629 #define GET_EGPR_IF_ENABLED(OPC) STI->hasEGPR() ? OPC##_EVEX : OPC in initConverters() macro 630 createReplacerDstCOPY(X86::MOVZX32rm16, GET_EGPR_IF_ENABLED(X86::KMOVWkm)); in initConverters() 631 createReplacerDstCOPY(X86::MOVZX64rm16, GET_EGPR_IF_ENABLED(X86::KMOVWkm)); in initConverters() 633 createReplacerDstCOPY(X86::MOVZX32rr16, GET_EGPR_IF_ENABLED(X86::KMOVWkk)); in initConverters() 634 createReplacerDstCOPY(X86::MOVZX64rr16, GET_EGPR_IF_ENABLED(X86::KMOVWkk)); in initConverters() 637 createReplacerDstCOPY(X86::MOVZX16rm8, GET_EGPR_IF_ENABLED(X86::KMOVBkm)); in initConverters() 638 createReplacerDstCOPY(X86::MOVZX32rm8, GET_EGPR_IF_ENABLED(X86::KMOVBkm)); in initConverters() 639 createReplacerDstCOPY(X86::MOVZX64rm8, GET_EGPR_IF_ENABLED(X86::KMOVBkm)); in initConverters() 641 createReplacerDstCOPY(X86::MOVZX16rr8, GET_EGPR_IF_ENABLED(X86::KMOVBkk)); in initConverters() 642 createReplacerDstCOPY(X86::MOVZX32rr8, GET_EGPR_IF_ENABLED(X86::KMOVBkk)); in initConverters() [all …]
|
| H A D | X86ExpandPseudo.cpp | 265 #define GET_EGPR_IF_ENABLED(OPC) (STI->hasEGPR() ? OPC##_EVEX : OPC) in expandMI() macro 483 BuildMI(MBB, MBBI, DL, TII->get(GET_EGPR_IF_ENABLED(X86::KMOVWkm))) in expandMI() 486 BuildMI(MBB, MBBI, DL, TII->get(GET_EGPR_IF_ENABLED(X86::KMOVWkm))) in expandMI() 519 BuildMI(MBB, MBBI, DL, TII->get(GET_EGPR_IF_ENABLED(X86::KMOVWmk))); in expandMI() 521 BuildMI(MBB, MBBI, DL, TII->get(GET_EGPR_IF_ENABLED(X86::KMOVWmk))); in expandMI() 570 MI.setDesc(TII->get(GET_EGPR_IF_ENABLED(X86::LDTILECFG))); in expandMI() 594 Opc = GET_EGPR_IF_ENABLED(X86::TILELOADDRS); in expandMI() 597 Opc = GET_EGPR_IF_ENABLED(X86::TILELOADDRST1); in expandMI() 600 Opc = GET_EGPR_IF_ENABLED(X86::TILELOADD); in expandMI() 603 Opc = GET_EGPR_IF_ENABLED(X86::TILELOADDT1); in expandMI() [all …]
|
| H A D | X86LowerTileCopy.cpp | 136 #define GET_EGPR_IF_ENABLED(OPC) (ST.hasEGPR() ? OPC##_EVEX : OPC) in runOnMachineFunction() macro 137 unsigned Opc = GET_EGPR_IF_ENABLED(X86::TILESTORED); in runOnMachineFunction() 144 Opc = GET_EGPR_IF_ENABLED(X86::TILELOADD); in runOnMachineFunction() 145 #undef GET_EGPR_IF_ENABLED in runOnMachineFunction()
|
| H A D | X86ISelDAGToDAG.cpp | 4220 #define GET_EGPR_IF_ENABLED(OPC) (Subtarget->hasEGPR() ? OPC##_EVEX : OPC) in matchBEXTRFromAndImm() macro 4227 ROpc = NVT == MVT::i64 ? GET_EGPR_IF_ENABLED(X86::BZHI64rr) in matchBEXTRFromAndImm() 4228 : GET_EGPR_IF_ENABLED(X86::BZHI32rr); in matchBEXTRFromAndImm() 4229 MOpc = NVT == MVT::i64 ? GET_EGPR_IF_ENABLED(X86::BZHI64rm) in matchBEXTRFromAndImm() 4230 : GET_EGPR_IF_ENABLED(X86::BZHI32rm); in matchBEXTRFromAndImm() 4245 ROpc = NVT == MVT::i64 ? GET_EGPR_IF_ENABLED(X86::BEXTR64rr) in matchBEXTRFromAndImm() 4246 : GET_EGPR_IF_ENABLED(X86::BEXTR32rr); in matchBEXTRFromAndImm() 4247 MOpc = NVT == MVT::i64 ? GET_EGPR_IF_ENABLED(X86::BEXTR64rm) in matchBEXTRFromAndImm() 4248 : GET_EGPR_IF_ENABLED(X86::BEXTR32rm); in matchBEXTRFromAndImm() 5787 : UseMULX ? GET_EGPR_IF_ENABLED(X86::MULX32rr) in Select() [all …]
|
| H A D | X86FastISel.cpp | 3087 #define GET_EGPR_IF_ENABLED(OPC) Subtarget->hasEGPR() ? OPC##_EVEX : OPC in fastLowerIntrinsicCall() macro 3089 Opc = GET_EGPR_IF_ENABLED(X86::CRC32r32r8); in fastLowerIntrinsicCall() 3093 Opc = GET_EGPR_IF_ENABLED(X86::CRC32r32r16); in fastLowerIntrinsicCall() 3097 Opc = GET_EGPR_IF_ENABLED(X86::CRC32r32r32); in fastLowerIntrinsicCall() 3101 Opc = GET_EGPR_IF_ENABLED(X86::CRC32r64r64); in fastLowerIntrinsicCall() 3104 #undef GET_EGPR_IF_ENABLED in fastLowerIntrinsicCall()
|
| H A D | X86InstrInfo.cpp | 4541 #define GET_EGPR_IF_ENABLED(OPC) (STI.hasEGPR() ? OPC##_EVEX : OPC) in getLoadStoreRegOpcode() macro 4542 return Load ? GET_EGPR_IF_ENABLED(X86::TILELOADD) in getLoadStoreRegOpcode() 4543 : GET_EGPR_IF_ENABLED(X86::TILESTORED); in getLoadStoreRegOpcode() 4544 #undef GET_EGPR_IF_ENABLED in getLoadStoreRegOpcode()
|
| H A D | X86ISelLowering.cpp | 38214 #define GET_EGPR_IF_ENABLED(OPC) (Subtarget.hasEGPR() ? OPC##_EVEX : OPC) in EmitInstrWithCustomInserter() macro 38216 Opc = GET_EGPR_IF_ENABLED(X86::TILELOADD); in EmitInstrWithCustomInserter() 38219 Opc = GET_EGPR_IF_ENABLED(X86::TILELOADDT1); in EmitInstrWithCustomInserter() 38222 Opc = GET_EGPR_IF_ENABLED(X86::TILESTORED); in EmitInstrWithCustomInserter() 38225 Opc = GET_EGPR_IF_ENABLED(X86::TILELOADDRS); in EmitInstrWithCustomInserter() 38228 Opc = GET_EGPR_IF_ENABLED(X86::TILELOADDRST1); in EmitInstrWithCustomInserter() 38231 #undef GET_EGPR_IF_ENABLED in EmitInstrWithCustomInserter() 38262 #define GET_EGPR_IF_ENABLED(OPC) (Subtarget.hasEGPR() ? OPC##_EVEX : OPC) in EmitInstrWithCustomInserter() macro 38267 Opc = GET_EGPR_IF_ENABLED(X86::T2RPNTLVWZ0); in EmitInstrWithCustomInserter() 38270 Opc = GET_EGPR_IF_ENABLED(X86::T2RPNTLVWZ0T1); in EmitInstrWithCustomInserter() [all …]
|