HomeSort by: relevance | last modified time | path
    Searched refs:getIndex (Results 1 - 25 of 310) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/CodeView/
FunctionId.h 23 uint32_t getIndex() const { return Index; }
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()
    [all...]
TypeIndex.h 110 uint32_t getIndex() const { return Index; }
119 return (getIndex() & ~DecoratedItemIdMask) - FirstNonSimpleIndex;
231 return A.getIndex() == B.getIndex();
235 return A.getIndex() != B.getIndex();
239 return A.getIndex() < B.getIndex();
243 return A.getIndex() <= B.getIndex();
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
ModuleSummaryAnalysis.h 66 ModuleSummaryIndex &getIndex() { return *Index; }
67 const ModuleSummaryIndex &getIndex() const { return *Index; }
90 const ModuleSummaryIndex *getIndex() const { return Index; }
  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
SlotIndexes.h 58 unsigned getIndex() const { return index; }
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()
    [all...]
SelectionDAGAddressAnalysis.h 50 SDValue getIndex() { return Index; }
51 SDValue getIndex() const { return Index; }
DwarfStringPoolEntry.h 52 unsigned getIndex() const {
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
NonRelocatableStringpool.cpp 49 return A.getIndex() < B.getIndex();
SlotIndexes.cpp 166 unsigned index = startItr->getIndex();
171 } while (curItr != indexList.end() && curItr->getIndex() <= index);
173 LLVM_DEBUG(dbgs() << "\n*** Renumbered SlotIndexes " << startItr->getIndex()
213 assert(ListI->getIndex() >= startIdx.getIndex() &&
252 dbgs() << ILE.getIndex() << " ";
270 os << listEntry()->getIndex() << "Berd"[getSlot()];
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGAddressAnalysis.cpp 70 if (A->getIndex() == B->getIndex())
75 if (MFI.isFixedObjectIndex(A->getIndex()) &&
76 MFI.isFixedObjectIndex(B->getIndex())) {
77 Off += MFI.getObjectOffset(B->getIndex()) -
78 MFI.getObjectOffset(A->getIndex());
132 if (A != B && (!MFI.isFixedObjectIndex(A->getIndex()) ||
133 !MFI.isFixedObjectIndex(B->getIndex()))) {
148 if ((BasePtr0.getIndex() == BasePtr1.getIndex() || (IsFI0 != IsFI1) |
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
AddressPool.h 43 unsigned getIndex(const MCSymbol *Sym, bool TLS = false);
DebugLocStream.h 111 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 {
133 size_t getIndex(const Entry &E) const {
  /src/external/apache2/llvm/dist/llvm/lib/IR/
PseudoProbe.cpp 51 Probe.Id = II->getIndex()->getZExtValue();
143 std::hash<uint64_t>()(I->getIndex()->getZExtValue());
148 Left->getIndex() == Right->getIndex() &&
  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/CodeView/
TypeIndex.cpp 103 Printer.printHex(FieldName, TypeName, TI.getIndex());
105 Printer.printHex(FieldName, TI.getIndex());
  /src/external/apache2/llvm/dist/clang/lib/AST/Interp/
Pointer.cpp 111 Path.push_back(APValue::LValuePathEntry::ArrayIndex(Ptr.getIndex()));
147 return Map->isInitialized(getIndex());
165 if (Map->initialize(getIndex())) {
  /src/external/apache2/llvm/dist/llvm/lib/Target/ARC/
ARCMCInstLower.cpp 52 Symbol = Printer.GetJTISymbol(MO.getIndex());
55 Symbol = Printer.GetCPISymbol(MO.getIndex());
  /src/external/apache2/llvm/dist/llvm/lib/Target/AVR/
AVRMCInstLower.cpp 99 MCOp = lowerSymbolOperand(MO, Printer.GetJTISymbol(MO.getIndex()));
102 MCOp = lowerSymbolOperand(MO, Printer.GetCPISymbol(MO.getIndex()));
  /src/external/apache2/llvm/dist/llvm/lib/Target/Lanai/
LanaiMCInstLower.cpp 51 << MO.getIndex();
61 << MO.getIndex();
  /src/external/apache2/llvm/dist/llvm/lib/Target/MSP430/
MSP430MCInstLower.cpp 56 << MO.getIndex();
73 << MO.getIndex();
  /src/external/apache2/llvm/dist/llvm/lib/Target/SystemZ/
SystemZMCInstLower.cpp 55 Symbol = AsmPrinter.GetJTISymbol(MO.getIndex());
60 Symbol = AsmPrinter.GetCPISymbol(MO.getIndex());
  /src/external/apache2/llvm/dist/llvm/lib/Target/VE/
VEMCInstLower.cpp 58 return LowerSymbolOperand(MI, MO, AP.GetCPISymbol(MO.getIndex()), AP);
67 return LowerSymbolOperand(MI, MO, AP.GetJTISymbol(MO.getIndex()), AP);
  /src/external/apache2/llvm/dist/llvm/lib/Target/XCore/
XCoreMCInstLower.cpp 54 Symbol = Printer.GetJTISymbol(MO.getIndex());
57 Symbol = Printer.GetCPISymbol(MO.getIndex());
  /src/external/apache2/llvm/dist/llvm/tools/llvm-exegesis/lib/
CodeTemplate.cpp 36 return VariableValues[Var.getIndex()];
40 return VariableValues[Var.getIndex()];
MCInstrDescView.h 39 unsigned getIndex() const;
77 unsigned getIndex() const;
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
ArrayBoundChecker.cpp 48 DefinedOrUnknownSVal Idx = ER->getIndex().castAs<DefinedOrUnknownSVal>();
ReturnPointerRangeChecker.cpp 50 DefinedOrUnknownSVal Idx = ER->getIndex().castAs<DefinedOrUnknownSVal>();

Completed in 36 milliseconds

1 2 3 4 5 6 7 8 91011>>