Home
last modified time | relevance | path

Searched refs:InstMap (Results 1 – 4 of 4) sorted by relevance

/llvm-project-15.0.7/llvm/include/llvm/Analysis/
H A DLoopAccessAnalysis.h229 return InstMap; in getMemoryInstructions()
237 for (unsigned I = 0; I < InstMap.size(); ++I) in generateInstructionOrderMap()
238 OrderMap[InstMap[I]] = I; in generateInstructionOrderMap()
272 SmallVector<Instruction *, 16> InstMap; variable
/llvm-project-15.0.7/llvm/utils/TableGen/
H A DInstrInfoEmitter.cpp500 std::map<unsigned, std::vector<std::string>> InstMap; in emitLogicalOperandSizeMappings() local
520 InstMap[I->second].push_back( in emitLogicalOperandSizeMappings()
530 if (!InstMap.empty()) { in emitLogicalOperandSizeMappings()
555 for (auto &P : InstMap) { in emitLogicalOperandSizeMappings()
587 std::map<unsigned, std::vector<std::string>> InstMap; in emitLogicalOperandTypeMappings() local
613 InstMap[I->second].push_back( in emitLogicalOperandTypeMappings()
623 if (!InstMap.empty()) { in emitLogicalOperandTypeMappings()
653 for (auto &P : InstMap) { in emitLogicalOperandTypeMappings()
/llvm-project-15.0.7/llvm/lib/Analysis/
H A DLoopAccessAnalysis.cpp1555 InstMap.push_back(SI); in addAccess()
1564 InstMap.push_back(LI); in addAccess()
1785 Type *ATy = getLoadStoreType(InstMap[AIdx]); in isDependent()
1786 Type *BTy = getLoadStoreType(InstMap[BIdx]); in isDependent()
1820 LLVM_DEBUG(dbgs() << "LAA: Distance for " << *InstMap[AIdx] << " to " in isDependent()
1821 << *InstMap[BIdx] << ": " << *Dist << "\n"); in isDependent()
2056 [&](unsigned Idx) { return this->InstMap[Idx]; }); in getInstructionsForAccess()
/llvm-project-15.0.7/llvm/lib/CodeGen/AsmPrinter/
H A DAsmPrinter.cpp3756 MCSection *InstMap = nullptr; in emitXRayTable() local
3768 InstMap = OutContext.getELFSection("xray_instr_map", ELF::SHT_PROGBITS, in emitXRayTable()
3777 InstMap = OutContext.getMachOSection("__DATA", "xray_instr_map", 0, in emitXRayTable()
3793 OutStreamer->switchSection(InstMap); in emitXRayTable()