Home
last modified time | relevance | path

Searched refs:getIndex (Results 1 – 25 of 378) sorted by relevance

12345678910>>...16

/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DFunctionId.h23 uint32_t getIndex() const { return Index; } in getIndex() function
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() > B.getIndex();
50 return A.getIndex() >= B.getIndex();
H A DTypeIndex.h111 uint32_t getIndex() const { return Index; } in getIndex() function
120 return (getIndex() & ~DecoratedItemIdMask) - FirstNonSimpleIndex; in toArrayIndex()
232 return A.getIndex() == B.getIndex();
236 return A.getIndex() != B.getIndex();
240 return A.getIndex() < B.getIndex();
244 return A.getIndex() <= B.getIndex();
248 return A.getIndex() > B.getIndex();
252 return A.getIndex() >= B.getIndex();
262 assert(A.getIndex() >= N);
299 return DenseMapInfo<uint32_t>::getHashValue(TI.getIndex());
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DSlotIndexes.h57 unsigned getIndex() const { return index; } in getIndex() function
102 unsigned getIndex() const {
103 return listEntry()->getIndex() | getSlot();
158 return getIndex() < other.getIndex();
163 return getIndex() <= other.getIndex();
169 return getIndex() > other.getIndex();
175 return getIndex() >= other.getIndex();
186 return A.listEntry()->getIndex() < B.listEntry()->getIndex();
197 return other.getIndex() - getIndex();
207 return (other.listEntry()->getIndex() - listEntry()->getIndex())
[all …]
H A DSelectionDAGAddressAnalysis.h50 SDValue getIndex() { return Index; } in getIndex() function
51 SDValue getIndex() const { return Index; } in getIndex() function
/freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGAddressAnalysis.cpp75 if (A->getIndex() == B->getIndex()) in equalBaseIndex()
81 if (MFI.isFixedObjectIndex(A->getIndex()) && in equalBaseIndex()
82 MFI.isFixedObjectIndex(B->getIndex())) { in equalBaseIndex()
83 Off += MFI.getObjectOffset(B->getIndex()) - in equalBaseIndex()
84 MFI.getObjectOffset(A->getIndex()); in equalBaseIndex()
142 if (A->getIndex() != B->getIndex() && (!MFI.isFixedObjectIndex(A->getIndex()) || in computeAliasing()
143 !MFI.isFixedObjectIndex(B->getIndex()))) { in computeAliasing()
/freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/
H A DSlotIndexes.cpp166 unsigned index = startItr->getIndex(); in renumberIndexes()
171 } while (curItr != indexList.end() && curItr->getIndex() <= index); in renumberIndexes()
173 LLVM_DEBUG(dbgs() << "\n*** Renumbered SlotIndexes " << startItr->getIndex() in renumberIndexes()
204 assert(ListI->getIndex() >= startIdx.getIndex() && in repairIndexesInRange()
248 dbgs() << ILE.getIndex() << " "; in dump()
266 os << listEntry()->getIndex() << "Berd"[getSlot()]; in print()
H A DNonRelocatableStringpool.cpp47 return A.getIndex() < B.getIndex(); in getEntriesForEmission()
H A DMachineOperand.cpp337 return getIndex() == Other.getIndex(); in isIdenticalTo()
340 return getIndex() == Other.getIndex() && getOffset() == Other.getOffset(); in isIdenticalTo()
342 return getIndex() == Other.getIndex(); in isIdenticalTo()
403 return hash_combine(MO.getType(), MO.getTargetFlags(), MO.getIndex()); in hash_value()
406 return hash_combine(MO.getType(), MO.getTargetFlags(), MO.getIndex(), in hash_value()
409 return hash_combine(MO.getType(), MO.getTargetFlags(), MO.getIndex()); in hash_value()
478 return MF ? ::getTargetIndexName(*MF, this->getIndex()) : nullptr; in getTargetIndexName()
882 int FrameIndex = getIndex(); in print()
891 OS << "%const." << getIndex(); in print()
898 if (const auto *TargetIndexName = ::getTargetIndexName(*MF, getIndex())) in print()
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DDebugLocStream.h110 size_t LI = getIndex(L); in getEntries()
115 size_t EI = getIndex(E); in getBytes()
120 size_t EI = getIndex(E); in getComments()
126 size_t getIndex(const List &L) const { in getIndex() function
131 size_t getIndex(const Entry &E) const { in getIndex() function
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DModuleSummaryAnalysis.h66 ModuleSummaryIndex &getIndex() { return *Index; } in getIndex() function
67 const ModuleSummaryIndex &getIndex() const { return *Index; } in getIndex() function
90 const ModuleSummaryIndex *getIndex() const { return Index; } in getIndex() function
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/ARC/
H A DARCISelDAGToDAG.cpp96 int FI = cast<FrameIndexSDNode>(Addr)->getIndex(); in SelectAddrModeS9()
116 int FI = cast<FrameIndexSDNode>(Base)->getIndex(); in SelectAddrModeS9()
151 Base = CurDAG->getTargetFrameIndex(FIN->getIndex(), MVT::i32); in SelectFrameADDR_ri()
161 Base = CurDAG->getTargetFrameIndex(FIN->getIndex(), MVT::i32); in SelectFrameADDR_ri()
H A DARCMCInstLower.cpp52 Symbol = Printer.GetJTISymbol(MO.getIndex()); in LowerSymbolOperand()
55 Symbol = Printer.GetCPISymbol(MO.getIndex()); in LowerSymbolOperand()
/freebsd-14.2/contrib/llvm-project/clang/lib/Analysis/
H A DConstructionContext.cpp148 return create<ArgumentConstructionContext>(C, E, ParentItem.getIndex(), in createBoundTemporaryFromLayers()
163 ParentItem.getIndex()); in createBoundTemporaryFromLayers()
212 return create<LambdaCaptureConstructionContext>(C, E, TopItem.getIndex()); in createFromLayers()
222 return create<ArgumentConstructionContext>(C, E, TopItem.getIndex(), in createFromLayers()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/DebugInfo/LogicalView/Core/
H A DLVStringPool.h37 LVStringPool() { getIndex(""); } in LVStringPool()
58 size_t getIndex(StringRef Key) { in getIndex() function
/freebsd-14.2/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Checkers/
H A DSValExplainer.h46 if (const auto *Idx = R->getIndex().getAsInteger()) { in isThisObject()
198 if (auto I = R->getIndex().getAs<nonloc::ConcreteInt>()) in VisitElementRegion()
201 OS << "'" << Visit(R->getIndex()) << "'"; in VisitElementRegion()
254 unsigned Index = R->getIndex() + 1; in VisitParamVarRegion()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Sema/
H A DSemaInternal.h67 return std::make_pair(TTP->getDepth(), TTP->getIndex()); in getDepthAndIndex()
70 return std::make_pair(NTTP->getDepth(), NTTP->getIndex()); in getDepthAndIndex()
73 return std::make_pair(TTP->getDepth(), TTP->getIndex()); in getDepthAndIndex()
80 return std::make_pair(TTP->getDepth(), TTP->getIndex()); in getDepthAndIndex()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64StackTaggingPreRA.cpp196 int FI = I->getOperand(1).getIndex(); in uncheckLoadsAndStores()
207 : FI(MI.getOperand(1).getIndex()), Tag(MI.getOperand(4).getImm()) {} in SlotWithTag()
357 int FI = I.getOperand(1).getIndex(); in runOnMachineFunction()
384 int FI = I->getOperand(1).getIndex(); in runOnMachineFunction()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/VE/
H A DVEMCInstLower.cpp58 return LowerSymbolOperand(MI, MO, AP.GetCPISymbol(MO.getIndex()), AP); in LowerOperand()
67 return LowerSymbolOperand(MI, MO, AP.GetJTISymbol(MO.getIndex()), AP); in LowerOperand()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZMCInstLower.cpp55 Symbol = AsmPrinter.GetJTISymbol(MO.getIndex()); in getExpr()
60 Symbol = AsmPrinter.GetCPISymbol(MO.getIndex()); in getExpr()
/freebsd-14.2/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DTypeIndex.cpp104 Printer.printHex(FieldName, TypeName, TI.getIndex()); in printTypeIndex()
106 Printer.printHex(FieldName, TI.getIndex()); in printTypeIndex()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/XCore/
H A DXCoreMCInstLower.cpp54 Symbol = Printer.GetJTISymbol(MO.getIndex()); in LowerSymbolOperand()
57 Symbol = Printer.GetCPISymbol(MO.getIndex()); in LowerSymbolOperand()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonCopyToCombine.cpp700 .addJumpTableIndex(HiOperand.getIndex(), HiOperand.getTargetFlags()) in emitCombineII()
707 .addJumpTableIndex(LoOperand.getIndex(), LoOperand.getTargetFlags()); in emitCombineII()
714 .addConstantPoolIndex(HiOperand.getIndex(), HiOperand.getOffset(), in emitCombineII()
722 .addConstantPoolIndex(LoOperand.getIndex(), LoOperand.getOffset(), in emitCombineII()
781 .addJumpTableIndex(HiOperand.getIndex(), HiOperand.getTargetFlags()) in emitCombineIR()
788 .addConstantPoolIndex(HiOperand.getIndex(), HiOperand.getOffset(), in emitCombineIR()
830 .addJumpTableIndex(LoOperand.getIndex(), LoOperand.getTargetFlags()); in emitCombineRI()
837 .addConstantPoolIndex(LoOperand.getIndex(), LoOperand.getOffset(), in emitCombineRI()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/CSKY/
H A DCSKYMCInstLower.cpp107 MCOp = lowerSymbolOperand(MO, Printer.GetCPISymbol(MO.getIndex())); in lowerOperand()
110 MCOp = lowerSymbolOperand(MO, Printer.GetJTISymbol(MO.getIndex())); in lowerOperand()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/MSP430/
H A DMSP430MCInstLower.cpp56 << MO.getIndex(); in GetJumpTableSymbol()
73 << MO.getIndex(); in GetConstantPoolIndexSymbol()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AVR/
H A DAVRMCInstLower.cpp108 MCOp = lowerSymbolOperand(MO, Printer.GetJTISymbol(MO.getIndex()), in lowerInstruction()
112 MCOp = lowerSymbolOperand(MO, Printer.GetCPISymbol(MO.getIndex()), in lowerInstruction()

12345678910>>...16