Home
last modified time | relevance | path

Searched refs:BaseID (Results 1 – 9 of 9) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DUniqueBBID.h23 unsigned BaseID; member
39 std::make_pair(Val.BaseID, Val.CloneID);
43 return DenseMapInfo<unsigned>::isEqual(LHS.BaseID, RHS.BaseID) &&
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DBasicBlockPathCloning.cpp60 OrigBB.getBasicBlock(), UniqueBBID{OrigBB.getBBID()->BaseID, CloneID}); in CloneMachineBasicBlock()
106 << PrevBB->getBBID()->BaseID << " in function " << MF.getName() in IsValidCloning()
166 BBIDToBlock.try_emplace(BB.getBBID()->BaseID, &BB); in ApplyCloning()
H A DAssignmentTrackingAnalysis.cpp441 std::string toString(unsigned BaseID) { in toString() argument
442 if (BaseID) in toString()
443 return Bases[BaseID].getVariableLocationOp(0)->getName().str(); in toString()
H A DMachineBasicBlock.cpp576 os << "bb_id " << getBBID()->BaseID; in printName()
/freebsd/contrib/llvm-project/clang/lib/Basic/
H A DSourceManager.cpp470 int BaseID = -int(LoadedSLocEntryTable.size()) - 1; in AllocateLoadedSLocEntries() local
471 LoadedSLocEntryAllocBegin.push_back(FileID::get(BaseID)); in AllocateLoadedSLocEntries()
472 return std::make_pair(BaseID, CurrentLoadedOffset); in AllocateLoadedSLocEntries()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/MIRParser/
H A DMIParser.cpp681 unsigned BaseID = 0; in parseBBID() local
683 if (getUnsigned(BaseID)) in parseBBID()
691 BBID = {BaseID, CloneID}; in parseBBID()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DAsmPrinter.cpp1494 OutStreamer->emitULEB128IntValue(MBB.getBBID()->BaseID); in emitBBAddrMapSection()
1550 OutStreamer->emitULEB128IntValue(SuccMBB->getBBID()->BaseID); in emitBBAddrMapSection()
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTWriter.cpp6059 auto writeBaseIDOrNone = [&](auto BaseID, bool ShouldWrite) { in WriteASTCore() argument
6060 assert(BaseID < std::numeric_limits<uint32_t>::max() && "base id too high"); in WriteASTCore()
6062 LE.write<uint32_t>(BaseID); in WriteASTCore()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DSLPVectorizer.cpp1368 Intrinsic::ID BaseID = 0; in getSameOpcode() local
1371 BaseID = getVectorIntrinsicIDForCall(CallBase, &TLI); in getSameOpcode()
1373 if (!isTriviallyVectorizable(BaseID) && BaseMappings.empty()) in getSameOpcode()
1474 if (ID != BaseID) in getSameOpcode()