Home
last modified time | relevance | path

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

12345678910>>...13

/netbsd-src/external/apache2/llvm/dist/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.h110 uint32_t getIndex() const { return Index; } in getIndex() function
119 return (getIndex() & ~DecoratedItemIdMask) - FirstNonSimpleIndex; in toArrayIndex()
231 return A.getIndex() == B.getIndex();
235 return A.getIndex() != B.getIndex();
239 return A.getIndex() < B.getIndex();
243 return A.getIndex() <= B.getIndex();
247 return A.getIndex() > B.getIndex();
251 return A.getIndex() >= B.getIndex();
261 assert(A.getIndex() >= N);
298 return DenseMapInfo<uint32_t>::getHashValue(TI.getIndex());
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
H A DSlotIndexes.h58 unsigned getIndex() const { return index; } in getIndex() function
124 unsigned getIndex() const {
125 return listEntry()->getIndex() | getSlot();
176 return getIndex() < other.getIndex();
181 return getIndex() <= other.getIndex();
187 return getIndex() > other.getIndex();
193 return getIndex() >= other.getIndex();
204 return A.listEntry()->getIndex() < B.listEntry()->getIndex();
215 return other.getIndex() - getIndex();
221 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
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGAddressAnalysis.cpp70 if (A->getIndex() == B->getIndex()) in equalBaseIndex()
75 if (MFI.isFixedObjectIndex(A->getIndex()) && in equalBaseIndex()
76 MFI.isFixedObjectIndex(B->getIndex())) { in equalBaseIndex()
77 Off += MFI.getObjectOffset(B->getIndex()) - in equalBaseIndex()
78 MFI.getObjectOffset(A->getIndex()); in equalBaseIndex()
132 if (A != B && (!MFI.isFixedObjectIndex(A->getIndex()) || in computeAliasing()
133 !MFI.isFixedObjectIndex(B->getIndex()))) { in computeAliasing()
148 if ((BasePtr0.getIndex() == BasePtr1.getIndex() || (IsFI0 != IsFI1) || in computeAliasing()
/netbsd-src/external/apache2/llvm/dist/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()
213 assert(ListI->getIndex() >= startIdx.getIndex() && in repairIndexesInRange()
252 dbgs() << ILE.getIndex() << " "; in dump()
270 os << listEntry()->getIndex() << "Berd"[getSlot()]; in print()
H A DMachineOperand.cpp300 return getIndex() == Other.getIndex(); in isIdenticalTo()
303 return getIndex() == Other.getIndex() && getOffset() == Other.getOffset(); in isIdenticalTo()
305 return getIndex() == Other.getIndex(); in isIdenticalTo()
365 return hash_combine(MO.getType(), MO.getTargetFlags(), MO.getIndex()); in hash_value()
368 return hash_combine(MO.getType(), MO.getTargetFlags(), MO.getIndex(), in hash_value()
371 return hash_combine(MO.getType(), MO.getTargetFlags(), MO.getIndex()); in hash_value()
425 return MF ? ::getTargetIndexName(*MF, this->getIndex()) : nullptr; in getTargetIndexName()
820 int FrameIndex = getIndex(); in print()
829 OS << "%const." << getIndex(); in print()
836 if (const auto *TargetIndexName = ::getTargetIndexName(*MF, getIndex())) in print()
[all …]
H A DNonRelocatableStringpool.cpp49 return A.getIndex() < B.getIndex(); in getEntriesForEmission()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
H A DDebugLocStream.h111 size_t LI = getIndex(L); in getEntries()
117 size_t EI = getIndex(E); in getBytes()
122 size_t EI = getIndex(E); in getComments()
128 size_t getIndex(const List &L) const { in getIndex() function
133 size_t getIndex(const Entry &E) const { in getIndex() function
/netbsd-src/external/apache2/llvm/dist/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
/netbsd-src/external/apache2/llvm/dist/llvm/lib/IR/
H A DPseudoProbe.cpp51 Probe.Id = II->getIndex()->getZExtValue(); in extractProbe()
143 std::hash<uint64_t>()(I->getIndex()->getZExtValue()); in removeRedundantPseudoProbes()
148 Left->getIndex() == Right->getIndex() && in removeRedundantPseudoProbes()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/ARC/
H A DARCISelDAGToDAG.cpp95 int FI = cast<FrameIndexSDNode>(Addr)->getIndex(); in SelectAddrModeS9()
115 int FI = cast<FrameIndexSDNode>(Base)->getIndex(); in SelectAddrModeS9()
150 Base = CurDAG->getTargetFrameIndex(FIN->getIndex(), MVT::i32); in SelectFrameADDR_ri()
160 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()
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/Interp/
H A DPointer.cpp111 Path.push_back(APValue::LValuePathEntry::ArrayIndex(Ptr.getIndex())); in toAPValue()
147 return Map->isInitialized(getIndex()); in isInitialized()
165 if (Map->initialize(getIndex())) { in initialize()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/
H A DAArch64StackTaggingPreRA.cpp201 int FI = I->getOperand(1).getIndex(); in uncheckLoadsAndStores()
212 : FI(MI.getOperand(1).getIndex()), Tag(MI.getOperand(4).getImm()) {} in SlotWithTag()
363 int FI = I.getOperand(1).getIndex(); in runOnMachineFunction()
390 int FI = I->getOperand(1).getIndex(); in runOnMachineFunction()
/netbsd-src/external/apache2/llvm/dist/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()
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-exegesis/lib/
H A 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
166 Variables[Op.getVariableIndex()].TiedOperands.push_back(Op.getIndex()); in create()
255 Stream << "- Op" << Op.getIndex(); in dump()
282 Stream << "- Var" << Var.getIndex(); in dump()
H A DCodeTemplate.cpp36 return VariableValues[Var.getIndex()]; in getValueFor()
40 return VariableValues[Var.getIndex()]; in getValueFor()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/DebugInfo/CodeView/
H A DTypeIndex.cpp103 Printer.printHex(FieldName, TypeName, TI.getIndex()); in printTypeIndex()
105 Printer.printHex(FieldName, TI.getIndex()); in printTypeIndex()
H A DCodeViewRecordIO.cpp134 Streamer->emitIntValue(TypeInd.getIndex(), sizeof(TypeInd.getIndex())); in mapInteger()
135 incrStreamedLen(sizeof(TypeInd.getIndex())); in mapInteger()
137 if (auto EC = Writer->writeInteger(TypeInd.getIndex())) in mapInteger()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
H A DHexagonCopyToCombine.cpp711 .addJumpTableIndex(HiOperand.getIndex(), HiOperand.getTargetFlags()) in emitCombineII()
718 .addJumpTableIndex(LoOperand.getIndex(), LoOperand.getTargetFlags()); in emitCombineII()
725 .addConstantPoolIndex(HiOperand.getIndex(), HiOperand.getOffset(), in emitCombineII()
733 .addConstantPoolIndex(LoOperand.getIndex(), LoOperand.getOffset(), in emitCombineII()
792 .addJumpTableIndex(HiOperand.getIndex(), HiOperand.getTargetFlags()) in emitCombineIR()
799 .addConstantPoolIndex(HiOperand.getIndex(), HiOperand.getOffset(), in emitCombineIR()
841 .addJumpTableIndex(LoOperand.getIndex(), LoOperand.getTargetFlags()); in emitCombineRI()
848 .addConstantPoolIndex(LoOperand.getIndex(), LoOperand.getOffset(), in emitCombineRI()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/MC/
H A DWinCOFFObjectWriter.cpp92 int64_t getIndex() const { return Index; } in getIndex() function in __anon9a7db13a0111::COFFSymbol
996 assert(Relocation.Symb->getIndex() != -1); in assignFileOffsets()
997 Relocation.Data.SymbolTableIndex = Relocation.Symb->getIndex(); in assignFileOffsets()
1060 assert(Symbol->getIndex() != -1); in writeObject()
1064 Symbol->Aux[0].Aux.WeakExternal.TagIndex = Symbol->Other->getIndex(); in writeObject()
1106 encodeULEB128(S->getIndex(), OS); in writeObject()
1114 encodeULEB128(SectionMap[TargetSection]->Symbol->getIndex(), OS); in writeObject()
1124 uint32_t FromIndex = CGPE.From->getSymbol().getIndex(); in writeObject()
1125 uint32_t ToIndex = CGPE.To->getSymbol().getIndex(); in writeObject()
1160 if (Symbol->getIndex() != -1) in writeObject()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/SystemZ/
H A DSystemZMCInstLower.cpp55 Symbol = AsmPrinter.GetJTISymbol(MO.getIndex()); in getExpr()
60 Symbol = AsmPrinter.GetCPISymbol(MO.getIndex()); in getExpr()
/netbsd-src/external/apache2/llvm/dist/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()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AVR/
H A DAVRMCInstLower.cpp99 MCOp = lowerSymbolOperand(MO, Printer.GetJTISymbol(MO.getIndex())); in lowerInstruction()
102 MCOp = lowerSymbolOperand(MO, Printer.GetCPISymbol(MO.getIndex())); in lowerInstruction()

12345678910>>...13