HomeSort by relevance Sort by last modified time
    Searched refs:ScopeIdx (Results 1 - 2 of 2) sorted by null

  /external/llvm/include/llvm/IR/
DebugLoc.h 53 /// ScopeIdx - This is an opaque ID# for Scope/InlinedAt information,
55 int ScopeIdx;
57 DebugLoc() : LineCol(0), ScopeIdx(0) {} // Defaults to unknown.
71 bool isUnknown() const { return ScopeIdx == 0; }
105 return LineCol == DL.LineCol && ScopeIdx == DL.ScopeIdx;
  /external/llvm/lib/IR/
DebugLoc.cpp 21 if (ScopeIdx == 0) return nullptr;
23 if (ScopeIdx > 0) {
24 // Positive ScopeIdx is an index into ScopeRecords, which has no inlined-at
26 assert(unsigned(ScopeIdx) <= Ctx.pImpl->ScopeRecords.size() &&
27 "Invalid ScopeIdx!");
28 return Ctx.pImpl->ScopeRecords[ScopeIdx-1].get();
32 assert(unsigned(-ScopeIdx) <= Ctx.pImpl->ScopeInlinedAtRecords.size() &&
33 "Invalid ScopeIdx");
34 return Ctx.pImpl->ScopeInlinedAtRecords[-ScopeIdx-1].first.get();
38 // Positive ScopeIdx is an index into ScopeRecords, which has no inlined-a
    [all...]

Completed in 69 milliseconds