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.cpp152 assert(InstrMapping.count(UMI->MI) == 0 && in insertNode()
154 InstrMapping[UMI->MI] = MaybeNewNode; in insertNode()
198 auto *UMI = InstrMapping.lookup(MI); in handleRecordedInst()
203 InstrMapping.erase(MI); in handleRecordedInst()
219 if (auto *UMI = InstrMapping.lookup(MI)) { in handleRemoveInst()
221 InstrMapping.erase(MI); in handleRemoveInst()
266 InstrMapping.clear(); in releaseMemory()
291 for (auto &It : InstrMapping) { in verify()
307 if (!InstrMapping.count(UMI.MI)) in verify()
312 if (InstrMapping[UMI.MI] != &UMI) 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.td208 def getPredOpcode : InstrMapping {
224 def getFalsePredOpcode : InstrMapping {
236 def getTruePredOpcode : InstrMapping {
248 def getPredNewOpcode : InstrMapping {
260 def getPredOldOpcode : InstrMapping {
272 def getNewValueOpcode : InstrMapping {
284 def getNonNVStore : InstrMapping {
292 def changeAddrMode_abs_io: InstrMapping {
301 def changeAddrMode_io_abs: InstrMapping {
310 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.cpp399 auto &InstrMapping = It->second; in getInstructionMappingImpl() local
400 InstrMapping = std::make_unique<InstructionMapping>( in getInstructionMappingImpl()
402 return *InstrMapping; in getInstructionMappingImpl()
665 MachineInstr &MI, const InstructionMapping &InstrMapping, in OperandsMapper() argument
667 : MRI(MRI), MI(MI), InstrMapping(InstrMapping) { in OperandsMapper()
668 unsigned NumOpds = InstrMapping.getNumOperands(); in OperandsMapper()
670 assert(InstrMapping.verify(MI) && "Invalid mapping for MI"); in OperandsMapper()
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/
H A DRegBankSelect.h594 const RegisterBankInfo::InstructionMapping &InstrMapping,
615 const RegisterBankInfo::InstructionMapping &InstrMapping,
H A DCSEInfo.h84 DenseMap<const MachineInstr *, UniqueMachineInstr *> InstrMapping; variable
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DSIInstrInfo.td3082 def getVOPe64 : InstrMapping {
3091 def getVOPe32 : InstrMapping {
3100 def getSDWAOp : InstrMapping {
3109 def getBasicFromSDWAOp : InstrMapping {
3118 def getDPPOp32 : InstrMapping {
3126 def getDPPOp64 : InstrMapping {
3135 def getCommuteOrig : InstrMapping {
3144 def getCommuteRev : InstrMapping {
3152 def getMCOpcodeGen : InstrMapping {
3178 def getSOPKOp : InstrMapping {
[all …]
H A DR600Instructions.td1783 def getLDSNoRetOp : InstrMapping {
/freebsd/contrib/llvm-project/llvm/lib/Target/WebAssembly/
H A DWebAssemblyInstrInfo.td250 def getStackOpcode : InstrMapping {
263 def getRegisterOpcode : InstrMapping {
276 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 {
555 def get64BitInstrFromSignedExt32BitInstr : 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.td1855 // InstrMapping - This class is used to create mapping tables to relate
1859 class InstrMapping {
1861 // define the relationship modeled by this InstrMapping record.
/freebsd/contrib/llvm-project/llvm/lib/Target/Lanai/
H A DLanaiInstrInfo.td262 def splsIdempotent : InstrMapping {
/freebsd/contrib/llvm-project/llvm/lib/Target/ARC/
H A DARCInstrInfo.td1021 def getPostIncOpcode : InstrMapping {
/freebsd/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZInstrFormats.td122 def getDisp12Opcode : InstrMapping {
131 def getDisp20Opcode : InstrMapping {
141 def getMemOpcode : InstrMapping {
150 def getTargetMemOpcode : InstrMapping {
159 def getTwoOperandOpcode : InstrMapping {
/freebsd/lib/clang/libllvm/
H A DMakefile2350 InstrMapping/-gen-x86-instr-mapping \
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DSVEInstrFormats.td752 def getSVEPseudoMap : InstrMapping {
766 def getSVERevInstr : InstrMapping {
775 def getSVENonRevInstr : InstrMapping {
H A DSMEInstrFormats.td86 def getSMEPseudoMap : InstrMapping {