Home
last modified time | relevance | path

Searched refs:InstrMapping (Results 1 – 21 of 21) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
H A DCSEInfo.cpp142 assert(InstrMapping.count(UMI->MI) == 0 && in insertNode()
144 InstrMapping[UMI->MI] = MaybeNewNode; in insertNode()
191 auto *UMI = InstrMapping.lookup(MI); in handleRecordedInst()
196 InstrMapping.erase(MI); in handleRecordedInst()
212 if (auto *UMI = InstrMapping.lookup(MI)) { in handleRemoveInst()
214 InstrMapping.erase(MI); in handleRemoveInst()
259 InstrMapping.clear(); in releaseMemory()
284 for (auto &It : InstrMapping) { in verify()
292 "CSEMap mismatch, InstrMapping has MIs without " in verify()
297 // For every node in the CSEMap, make sure that the InstrMapping in verify()
[all...]
H A DRegBankSelect.cpp444 MachineInstr &MI, const RegisterBankInfo::InstructionMapping &InstrMapping, in computeMapping() argument
449 if (!InstrMapping.isValid()) in computeMapping()
455 bool Saturated = Cost.addLocalCost(InstrMapping.getCost()); in computeMapping()
458 LLVM_DEBUG(dbgs() << "With: " << InstrMapping << '\n'); in computeMapping()
470 for (unsigned OpIdx = 0, EndOpIdx = InstrMapping.getNumOperands(); in computeMapping()
484 InstrMapping.getOperandMapping(OpIdx); in computeMapping()
589 MachineInstr &MI, const RegisterBankInfo::InstructionMapping &InstrMapping, in applyMapping() argument
592 RegisterBankInfo::OperandsMapper OpdMapper(MI, InstrMapping, *MRI); in applyMapping()
604 InstrMapping.getOperandMapping(OpIdx); in applyMapping()
/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagon.td192 def getPredOpcode : InstrMapping {
208 def getFalsePredOpcode : InstrMapping {
220 def getTruePredOpcode : InstrMapping {
232 def getPredNewOpcode : InstrMapping {
244 def getPredOldOpcode : InstrMapping {
256 def getNewValueOpcode : InstrMapping {
268 def getNonNVStore : InstrMapping {
276 def changeAddrMode_abs_io: InstrMapping {
285 def changeAddrMode_io_abs: InstrMapping {
294 def changeAddrMode_io_rr: InstrMapping {
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DRegisterBankInfo.h297 const InstructionMapping &InstrMapping; variable
324 OperandsMapper(MachineInstr &MI, const InstructionMapping &InstrMapping,
333 const InstructionMapping &getInstrMapping() const { return InstrMapping; } in getInstrMapping()
779 const RegisterBankInfo::InstructionMapping &InstrMapping) {
780 InstrMapping.print(OS);
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DRegisterBankInfo.cpp401 auto &InstrMapping = MapOfInstructionMappings[Hash]; in getInstructionMappingImpl() local
402 InstrMapping = std::make_unique<InstructionMapping>( in getInstructionMappingImpl()
404 return *InstrMapping; in getInstructionMappingImpl()
667 MachineInstr &MI, const InstructionMapping &InstrMapping, in OperandsMapper() argument
669 : MRI(MRI), MI(MI), InstrMapping(InstrMapping) { in OperandsMapper()
670 unsigned NumOpds = InstrMapping.getNumOperands(); in OperandsMapper()
672 assert(InstrMapping.verify(MI) && "Invalid mapping for MI"); in OperandsMapper()
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/
H A DRegBankSelect.h585 /// Compute the cost of mapping \p MI with \p InstrMapping and
594 const RegisterBankInfo::InstructionMapping &InstrMapping,
615 const RegisterBankInfo::InstructionMapping &InstrMapping,
H A DCSEInfo.h82 DenseMap<const MachineInstr *, UniqueMachineInstr *> InstrMapping; variable
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DSIInstrInfo.td2702 def getVOPe64 : InstrMapping {
2711 def getVOPe32 : InstrMapping {
2720 def getSDWAOp : InstrMapping {
2729 def getBasicFromSDWAOp : InstrMapping {
2738 def getDPPOp32 : InstrMapping {
2746 def getDPPOp64 : InstrMapping {
2755 def getCommuteOrig : InstrMapping {
2764 def getCommuteRev : InstrMapping {
2772 def getMCOpcodeGen : InstrMapping {
2797 def getSOPKOp : InstrMapping {
[all …]
H A DR600Instructions.td1783 def getLDSNoRetOp : InstrMapping {
/freebsd/contrib/llvm-project/llvm/lib/Target/WebAssembly/
H A DWebAssemblyInstrInfo.td238 def getStackOpcode : InstrMapping {
251 def getRegisterOpcode : InstrMapping {
264 def getWasm64Opcode : InstrMapping {
/freebsd/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPC.td517 def getRecordFormOpcode : InstrMapping {
530 def getNonRecordFormOpcode : InstrMapping {
543 def getAltVSXFMAOpcode : InstrMapping {
/freebsd/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsDSPInstrFormats.td11 def Dsp2MicroMips : InstrMapping {
H A DMipsInstrFormats.td40 def Std2MicroMips : InstrMapping {
54 def Std2MicroMipsR6 : InstrMapping {
H A DMips32r6InstrFormats.td15 def MipsR62MicroMipsR6 : InstrMapping {
/freebsd/contrib/llvm-project/llvm/include/llvm/Target/
H A DTarget.td1833 // InstrMapping - This class is used to create mapping tables to relate
1837 class InstrMapping {
1839 // define the relationship modeled by this InstrMapping record.
/freebsd/contrib/llvm-project/llvm/lib/Target/Lanai/
H A DLanaiInstrInfo.td261 def splsIdempotent : InstrMapping {
/freebsd/contrib/llvm-project/llvm/lib/Target/ARC/
H A DARCInstrInfo.td1022 def getPostIncOpcode : InstrMapping {
/freebsd/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZInstrFormats.td121 def getDisp12Opcode : InstrMapping {
130 def getDisp20Opcode : InstrMapping {
140 def getMemOpcode : InstrMapping {
149 def getTargetMemOpcode : InstrMapping {
158 def getTwoOperandOpcode : InstrMapping {
/freebsd/lib/clang/libllvm/
H A DMakefile2168 InstrMapping/-gen-x86-instr-mapping \
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DSVEInstrFormats.td655 def getSVEPseudoMap : InstrMapping {
669 def getSVERevInstr : InstrMapping {
678 def getSVENonRevInstr : InstrMapping {
H A DSMEInstrFormats.td47 def getSMEPseudoMap : InstrMapping {