Home
last modified time | relevance | path

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

12345678910>>...14

/openbsd/src/gnu/llvm/llvm/include/llvm/DebugInfo/CodeView/
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();
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());
/openbsd/src/gnu/llvm/llvm/include/llvm/CodeGen/
DSlotIndexes.h57 unsigned getIndex() const { return index; } in getIndex() function
120 unsigned getIndex() const {
121 return listEntry()->getIndex() | getSlot();
177 return getIndex() < other.getIndex();
182 return getIndex() <= other.getIndex();
188 return getIndex() > other.getIndex();
194 return getIndex() >= other.getIndex();
205 return A.listEntry()->getIndex() < B.listEntry()->getIndex();
216 return other.getIndex() - getIndex();
226 return (other.listEntry()->getIndex() - listEntry()->getIndex())
[all …]
DSelectionDAGAddressAnalysis.h50 SDValue getIndex() { return Index; } in getIndex() function
51 SDValue getIndex() const { return Index; } in getIndex() function
/openbsd/src/gnu/llvm/llvm/lib/CodeGen/
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()
243 dbgs() << ILE.getIndex() << " "; in dump()
261 os << listEntry()->getIndex() << "Berd"[getSlot()]; in print()
DMachineOperand.cpp319 return getIndex() == Other.getIndex(); in isIdenticalTo()
322 return getIndex() == Other.getIndex() && getOffset() == Other.getOffset(); in isIdenticalTo()
324 return getIndex() == Other.getIndex(); in isIdenticalTo()
385 return hash_combine(MO.getType(), MO.getTargetFlags(), MO.getIndex()); in hash_value()
388 return hash_combine(MO.getType(), MO.getTargetFlags(), MO.getIndex(), in hash_value()
391 return hash_combine(MO.getType(), MO.getTargetFlags(), MO.getIndex()); in hash_value()
460 return MF ? ::getTargetIndexName(*MF, this->getIndex()) : nullptr; in getTargetIndexName()
864 int FrameIndex = getIndex(); in print()
873 OS << "%const." << getIndex(); in print()
880 if (const auto *TargetIndexName = ::getTargetIndexName(*MF, getIndex())) in print()
[all …]
DNonRelocatableStringpool.cpp50 return A.getIndex() < B.getIndex(); in getEntriesForEmission()
/openbsd/src/gnu/llvm/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAGAddressAnalysis.cpp71 if (A->getIndex() == B->getIndex()) in equalBaseIndex()
76 if (MFI.isFixedObjectIndex(A->getIndex()) && in equalBaseIndex()
77 MFI.isFixedObjectIndex(B->getIndex())) { in equalBaseIndex()
78 Off += MFI.getObjectOffset(B->getIndex()) - in equalBaseIndex()
79 MFI.getObjectOffset(A->getIndex()); in equalBaseIndex()
133 if (A != B && (!MFI.isFixedObjectIndex(A->getIndex()) || in computeAliasing()
134 !MFI.isFixedObjectIndex(B->getIndex()))) { in computeAliasing()
/openbsd/src/gnu/llvm/llvm/include/llvm/Analysis/
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
/openbsd/src/gnu/llvm/llvm/lib/CodeGen/AsmPrinter/
DDebugLocStream.h111 size_t LI = getIndex(L); in getEntries()
116 size_t EI = getIndex(E); in getBytes()
121 size_t EI = getIndex(E); in getComments()
127 size_t getIndex(const List &L) const { in getIndex() function
132 size_t getIndex(const Entry &E) const { in getIndex() function
/openbsd/src/gnu/llvm/llvm/lib/Target/ARC/
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()
DARCMCInstLower.cpp52 Symbol = Printer.GetJTISymbol(MO.getIndex()); in LowerSymbolOperand()
55 Symbol = Printer.GetCPISymbol(MO.getIndex()); in LowerSymbolOperand()
/openbsd/src/gnu/llvm/clang/lib/Analysis/
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()
/openbsd/src/gnu/llvm/clang/lib/AST/Interp/
DPointer.cpp114 Path.push_back(APValue::LValuePathEntry::ArrayIndex(Ptr.getIndex())); in toAPValue()
157 return Map->isInitialized(getIndex()); in isInitialized()
181 if (Map->initialize(getIndex())) { in initialize()
/openbsd/src/gnu/llvm/clang/include/clang/StaticAnalyzer/Checkers/
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()
/openbsd/src/gnu/llvm/llvm/lib/Target/AArch64/
DAArch64StackTaggingPreRA.cpp197 int FI = I->getOperand(1).getIndex(); in uncheckLoadsAndStores()
208 : FI(MI.getOperand(1).getIndex()), Tag(MI.getOperand(4).getImm()) {} in SlotWithTag()
358 int FI = I.getOperand(1).getIndex(); in runOnMachineFunction()
385 int FI = I->getOperand(1).getIndex(); in runOnMachineFunction()
/openbsd/src/gnu/llvm/clang/include/clang/Sema/
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()
/openbsd/src/gnu/llvm/llvm/lib/Target/SystemZ/
DSystemZMCInstLower.cpp55 Symbol = AsmPrinter.GetJTISymbol(MO.getIndex()); in getExpr()
60 Symbol = AsmPrinter.GetCPISymbol(MO.getIndex()); in getExpr()
/openbsd/src/gnu/llvm/llvm/lib/DebugInfo/CodeView/
DTypeIndex.cpp104 Printer.printHex(FieldName, TypeName, TI.getIndex()); in printTypeIndex()
106 Printer.printHex(FieldName, TI.getIndex()); in printTypeIndex()
/openbsd/src/gnu/llvm/llvm/lib/Target/VE/
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()
/openbsd/src/gnu/llvm/llvm/lib/Target/XCore/
DXCoreMCInstLower.cpp54 Symbol = Printer.GetJTISymbol(MO.getIndex()); in LowerSymbolOperand()
57 Symbol = Printer.GetCPISymbol(MO.getIndex()); in LowerSymbolOperand()
/openbsd/src/gnu/llvm/llvm/tools/llvm-exegesis/lib/
DCodeTemplate.cpp45 return VariableValues[Var.getIndex()]; in getValueFor()
49 return VariableValues[Var.getIndex()]; in getValueFor()
DMCInstrDescView.cpp20 unsigned Variable::getIndex() const { return *Index; } in getIndex() function in llvm::exegesis::Variable
36 unsigned Operand::getIndex() const { return *Index; } in getIndex() function in llvm::exegesis::Operand
164 Variables[Op.getVariableIndex()].TiedOperands.push_back(Op.getIndex()); in create()
253 Stream << "- Op" << Op.getIndex(); in dump()
280 Stream << "- Var" << Var.getIndex(); in dump()
/openbsd/src/gnu/llvm/llvm/lib/Target/Hexagon/
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()
/openbsd/src/gnu/llvm/llvm/lib/Target/AVR/
DAVRMCInstLower.cpp108 MCOp = lowerSymbolOperand(MO, Printer.GetJTISymbol(MO.getIndex()), in lowerInstruction()
112 MCOp = lowerSymbolOperand(MO, Printer.GetCPISymbol(MO.getIndex()), in lowerInstruction()

12345678910>>...14