Searched refs:getIndex (Results 1 - 25 of 279) sorted by relevance

1234567891011>>

/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DFunctionId.h23 uint32_t getIndex() const { return Index; } function in class:llvm::codeview::FunctionId
30 return A.getIndex() == B.getIndex();
34 return A.getIndex() != B.getIndex();
38 return A.getIndex() < B.getIndex();
42 return A.getIndex() <= B.getIndex();
46 return A.getIndex() >
[all...]
H A DTypeIndex.h110 uint32_t getIndex() const { return Index; } function in class:llvm::codeview::SimpleTypeMode::TypeIndex
119 return getIndex() - FirstNonSimpleIndex;
222 return A.getIndex() == B.getIndex();
226 return A.getIndex() != B.getIndex();
230 return A.getIndex() < B.getIndex();
234 return A.getIndex() <= B.getIndex();
[all...]
H A DFormatters.h56 Stream << formatv("{0:X+4}", V.getIndex());
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DModuleSummaryAnalysis.h63 ModuleSummaryIndex &getIndex() { return *Index; } function in class:llvm::ModuleSummaryIndexWrapperPass
64 const ModuleSummaryIndex &getIndex() const { return *Index; } function in class:llvm::ModuleSummaryIndexWrapperPass
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DSlotIndexes.h58 unsigned getIndex() const { return index; } function in class:llvm::IndexListEntry
124 unsigned getIndex() const { function in class:llvm::SlotIndex
125 return listEntry()->getIndex() | getSlot();
176 return getIndex() < other.getIndex();
181 return getIndex() <= other.getIndex();
187 return getIndex() > other.getIndex();
193 return getIndex() >
[all...]
H A DSelectionDAGAddressAnalysis.h50 SDValue getIndex() { return Index; } function in class:llvm::BaseIndexOffset
51 SDValue getIndex() const { return Index; } function in class:llvm::BaseIndexOffset
H A DDwarfStringPoolEntry.h52 unsigned getIndex() const { function in class:llvm::DwarfStringPoolEntryRef
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DNonRelocatableStringpool.cpp49 return A.getIndex() < B.getIndex();
H A DSlotIndexes.cpp165 unsigned index = startItr->getIndex();
170 } while (curItr != indexList.end() && curItr->getIndex() <= index);
172 LLVM_DEBUG(dbgs() << "\n*** Renumbered SlotIndexes " << startItr->getIndex()
212 assert(ListI->getIndex() >= startIdx.getIndex() &&
252 dbgs() << itr->getIndex() << " ";
270 os << listEntry()->getIndex() << "Berd"[getSlot()];
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGAddressAnalysis.cpp69 if (A->getIndex() == B->getIndex())
74 if (MFI.isFixedObjectIndex(A->getIndex()) &&
75 MFI.isFixedObjectIndex(B->getIndex())) {
76 Off += MFI.getObjectOffset(B->getIndex()) -
77 MFI.getObjectOffset(A->getIndex());
121 if (A != B && (!MFI.isFixedObjectIndex(A->getIndex()) ||
122 !MFI.isFixedObjectIndex(B->getIndex()))) {
137 if ((BasePtr0.getIndex() == BasePtr1.getIndex() || (IsFI
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DAddressPool.h43 unsigned getIndex(const MCSymbol *Sym, bool TLS = false);
H A DDebugLocStream.h111 size_t LI = getIndex(L);
117 size_t EI = getIndex(E);
122 size_t EI = getIndex(E);
128 size_t getIndex(const List &L) const { function in class:llvm::DebugLocStream
133 size_t getIndex(const Entry &E) const { function in class:llvm::DebugLocStream
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DTypeIndex.cpp103 Printer.printHex(FieldName, TypeName, TI.getIndex());
105 Printer.printHex(FieldName, TI.getIndex());
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/Interp/
H A DPointer.cpp111 Path.push_back(APValue::LValuePathEntry::ArrayIndex(Ptr.getIndex()));
147 return Map->isInitialized(getIndex());
165 if (Map->initialize(getIndex())) {
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Lanai/
H A DLanaiMCInstLower.cpp51 << MO.getIndex();
61 << MO.getIndex();
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/MSP430/
H A DMSP430MCInstLower.cpp56 << MO.getIndex();
73 << MO.getIndex();
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZMCInstLower.cpp55 Symbol = AsmPrinter.GetJTISymbol(MO.getIndex());
60 Symbol = AsmPrinter.GetCPISymbol(MO.getIndex());
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/XCore/
H A DXCoreMCInstLower.cpp54 Symbol = Printer.GetJTISymbol(MO.getIndex());
57 Symbol = Printer.GetCPISymbol(MO.getIndex());
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARC/
H A DARCMCInstLower.cpp52 Symbol = Printer.GetJTISymbol(MO.getIndex());
55 Symbol = Printer.GetCPISymbol(MO.getIndex());
H A DARCISelDAGToDAG.cpp95 int FI = cast<FrameIndexSDNode>(Addr)->getIndex();
115 int FI = cast<FrameIndexSDNode>(Base)->getIndex();
150 Base = CurDAG->getTargetFrameIndex(FIN->getIndex(), MVT::i32);
160 Base = CurDAG->getTargetFrameIndex(FIN->getIndex(), MVT::i32);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AVR/
H A DAVRMCInstLower.cpp99 MCOp = lowerSymbolOperand(MO, Printer.GetJTISymbol(MO.getIndex()));
102 MCOp = lowerSymbolOperand(MO, Printer.GetCPISymbol(MO.getIndex()));
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Bitcode/Writer/
H A DBitcodeWriterPass.cpp56 ? &(getAnalysis<ModuleSummaryIndexWrapperPass>().getIndex())
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DReturnPointerRangeChecker.cpp49 DefinedOrUnknownSVal Idx = ER->getIndex().castAs<DefinedOrUnknownSVal>();
H A DArrayBoundChecker.cpp47 DefinedOrUnknownSVal Idx = ER->getIndex().castAs<DefinedOrUnknownSVal>();
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
H A DPdbSymUid.cpp97 repr.index = tsid.index.getIndex();
106 repr.index = flmid.index.getIndex();

Completed in 153 milliseconds

1234567891011>>