| /freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/ |
| H A D | FunctionId.h | 23 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 D | TypeIndex.h | 112 uint32_t getIndex() const { return Index; } in getIndex() function 121 return (getIndex() & ~DecoratedItemIdMask) - FirstNonSimpleIndex; in toArrayIndex() 233 return A.getIndex() == B.getIndex(); 237 return A.getIndex() != B.getIndex(); 241 return A.getIndex() < B.getIndex(); 245 return A.getIndex() <= B.getIndex(); 249 return A.getIndex() > B.getIndex(); 253 return A.getIndex() >= B.getIndex(); 263 assert(A.getIndex() >= N); 300 return DenseMapInfo<uint32_t>::getHashValue(TI.getIndex());
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
| H A D | SlotIndexes.h | 59 unsigned getIndex() const { return index; } in getIndex() function 100 unsigned getIndex() const { in getIndex() function 101 return listEntry()->getIndex() | getSlot(); in getIndex() 156 return getIndex() < other.getIndex(); 161 return getIndex() <= other.getIndex(); 167 return getIndex() > other.getIndex(); 173 return getIndex() >= other.getIndex(); 184 return A.listEntry()->getIndex() < B.listEntry()->getIndex(); in isEarlierInstr() 195 return other.getIndex() - getIndex(); in distance() 205 return (other.listEntry()->getIndex() - listEntry()->getIndex()) in getApproxInstrDistance() [all …]
|
| H A D | SelectionDAGAddressAnalysis.h | 52 SDValue getIndex() { return Index; } in getIndex() function 53 SDValue getIndex() const { return Index; } in getIndex() function
|
| /freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
| H A D | SelectionDAGAddressAnalysis.cpp | 75 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() 138 if (A->getIndex() != B->getIndex() && (!MFI.isFixedObjectIndex(A->getIndex()) || in computeAliasing() 139 !MFI.isFixedObjectIndex(B->getIndex()))) { in computeAliasing()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/ADT/ |
| H A D | TrieHashIndexGenerator.h | 51 return getIndex(Bytes, *StartBit, NumRootBits); in next() 57 return getIndex(Bytes, *StartBit, NumSubtrieBits); in next() 80 return getIndex(CollidingBits, *StartBit, NumSubtrieBits); in getCollidingBits() 87 static size_t getIndex(ArrayRef<uint8_t> Bytes, size_t StartBit, in getIndex() function
|
| /freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
| H A D | SlotIndexes.cpp | 178 unsigned index = startItr->getIndex(); in renumberIndexes() 183 } while (curItr != indexList.end() && curItr->getIndex() <= index); in renumberIndexes() 185 LLVM_DEBUG(dbgs() << "\n*** Renumbered SlotIndexes " << startItr->getIndex() in renumberIndexes() 217 assert(ListI->getIndex() >= startIdx.getIndex() && in repairIndexesInRange() 268 OS << ILE.getIndex() << ' '; in print() 288 os << listEntry()->getIndex() << "Berd"[getSlot()]; in print()
|
| H A D | NonRelocatableStringpool.cpp | 42 return A.getIndex() < B.getIndex(); in getEntriesForEmission()
|
| H A D | MachineOperand.cpp | 349 return getIndex() == Other.getIndex(); in isIdenticalTo() 352 return getIndex() == Other.getIndex() && getOffset() == Other.getOffset(); in isIdenticalTo() 354 return getIndex() == Other.getIndex(); in isIdenticalTo() 416 return hash_combine(MO.getType(), MO.getTargetFlags(), MO.getIndex()); in hash_value() 419 return hash_combine(MO.getType(), MO.getTargetFlags(), MO.getIndex(), in hash_value() 422 return hash_combine(MO.getType(), MO.getTargetFlags(), MO.getIndex()); in hash_value() 487 return MF ? ::getTargetIndexName(*MF, this->getIndex()) : nullptr; in getTargetIndexName() 894 int FrameIndex = getIndex(); in print() 903 OS << "%const." << getIndex(); in print() 910 if (const auto *TargetIndexName = ::getTargetIndexName(*MF, getIndex())) in print() [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/ |
| H A D | DebugLocStream.h | 110 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 { 131 size_t getIndex(const Entry &E) const { in getIndex() 127 size_t getIndex(const List &L) const { getIndex() function 132 size_t getIndex(const Entry &E) const { getIndex() function
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/ |
| H A D | ModuleSummaryAnalysis.h | 67 ModuleSummaryIndex &getIndex() { return *Index; } in getIndex() function 68 const ModuleSummaryIndex &getIndex() const { return *Index; } in getIndex() function 91 const ModuleSummaryIndex *getIndex() const { return Index; } in getIndex() function
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/ARC/ |
| H A D | ARCISelDAGToDAG.cpp | 103 int FI = cast<FrameIndexSDNode>(Addr)->getIndex(); in SelectAddrModeS9() 123 int FI = cast<FrameIndexSDNode>(Base)->getIndex(); in SelectAddrModeS9() 158 Base = CurDAG->getTargetFrameIndex(FIN->getIndex(), MVT::i32); in SelectFrameADDR_ri() 168 Base = CurDAG->getTargetFrameIndex(FIN->getIndex(), MVT::i32); in SelectFrameADDR_ri()
|
| H A D | ARCMCInstLower.cpp | 51 Symbol = Printer.GetJTISymbol(MO.getIndex()); in LowerSymbolOperand() 54 Symbol = Printer.GetCPISymbol(MO.getIndex()); in LowerSymbolOperand()
|
| /freebsd/contrib/llvm-project/clang/lib/Analysis/ |
| H A D | ConstructionContext.cpp | 148 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/contrib/llvm-project/clang/include/clang/Sema/ |
| H A D | SemaInternal.h | 63 return std::make_pair(TTP->getDepth(), TTP->getIndex()); in getDepthAndIndex() 66 return std::make_pair(NTTP->getDepth(), NTTP->getIndex()); in getDepthAndIndex() 69 return std::make_pair(TTP->getDepth(), TTP->getIndex()); in getDepthAndIndex() 76 return std::make_pair(TTP->getDepth(), TTP->getIndex()); in getDepthAndIndex()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/LogicalView/Core/ |
| H A D | LVStringPool.h | 37 LVStringPool() { getIndex(""); } in LVStringPool() 58 size_t getIndex(StringRef Key) { in getIndex() function
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/ |
| H A D | AArch64StackTaggingPreRA.cpp | 190 int FI = I->getOperand(1).getIndex(); in uncheckLoadsAndStores() 201 : FI(MI.getOperand(1).getIndex()), Tag(MI.getOperand(4).getImm()) {} in SlotWithTag() 350 int FI = I.getOperand(1).getIndex(); in runOnMachineFunction() 377 int FI = I->getOperand(1).getIndex(); in runOnMachineFunction()
|
| /freebsd/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/ |
| H A D | TypeIndex.cpp | 104 Printer.printHex(FieldName, TypeName, TI.getIndex()); in printTypeIndex() 106 Printer.printHex(FieldName, TI.getIndex()); in printTypeIndex()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/VE/ |
| H A D | VEMCInstLower.cpp | 58 return LowerSymbolOperand(MI, MO, AP.GetCPISymbol(MO.getIndex()), AP); in LowerOperand() 67 return LowerSymbolOperand(MI, MO, AP.GetJTISymbol(MO.getIndex()), AP); in LowerOperand()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/SystemZ/ |
| H A D | SystemZMCInstLower.cpp | 55 Symbol = AsmPrinter.GetJTISymbol(MO.getIndex()); in getExpr() 60 Symbol = AsmPrinter.GetCPISymbol(MO.getIndex()); in getExpr()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/ |
| H A D | HexagonCopyToCombine.cpp | 694 .addJumpTableIndex(HiOperand.getIndex(), HiOperand.getTargetFlags()) in emitCombineII() 701 .addJumpTableIndex(LoOperand.getIndex(), LoOperand.getTargetFlags()); in emitCombineII() 708 .addConstantPoolIndex(HiOperand.getIndex(), HiOperand.getOffset(), in emitCombineII() 716 .addConstantPoolIndex(LoOperand.getIndex(), LoOperand.getOffset(), in emitCombineII() 775 .addJumpTableIndex(HiOperand.getIndex(), HiOperand.getTargetFlags()) in emitCombineIR() 782 .addConstantPoolIndex(HiOperand.getIndex(), HiOperand.getOffset(), in emitCombineIR() 824 .addJumpTableIndex(LoOperand.getIndex(), LoOperand.getTargetFlags()); in emitCombineRI() 831 .addConstantPoolIndex(LoOperand.getIndex(), LoOperand.getOffset(), in emitCombineRI()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/XCore/ |
| H A D | XCoreMCInstLower.cpp | 53 Symbol = Printer.GetJTISymbol(MO.getIndex()); in LowerSymbolOperand() 56 Symbol = Printer.GetCPISymbol(MO.getIndex()); in LowerSymbolOperand()
|
| /freebsd/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Checkers/ |
| H A D | SValExplainer.h | 55 if (const auto *Idx = R->getIndex().getAsInteger()) { in isThisObject() 209 if (auto I = R->getIndex().getAs<nonloc::ConcreteInt>()) in VisitElementRegion() 212 OS << "'" << Visit(R->getIndex()) << "'"; in VisitElementRegion() 265 unsigned Index = R->getIndex() + 1; in VisitParamVarRegion()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/CSKY/ |
| H A D | CSKYMCInstLower.cpp | 106 MCOp = lowerSymbolOperand(MO, Printer.GetCPISymbol(MO.getIndex())); in lowerOperand() 109 MCOp = lowerSymbolOperand(MO, Printer.GetJTISymbol(MO.getIndex())); in lowerOperand()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/MSP430/ |
| H A D | MSP430MCInstLower.cpp | 56 << MO.getIndex(); in GetJumpTableSymbol() 73 << MO.getIndex(); in GetConstantPoolIndexSymbol()
|