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

  /external/llvm/include/llvm/Support/
DebugLoc.h 50 /// ScopeIdx - This is an opaque ID# for Scope/InlinedAt information,
52 int ScopeIdx;
54 DebugLoc() : LineCol(0), ScopeIdx(0) {} // Defaults to unknown.
68 bool isUnknown() const { return ScopeIdx == 0; }
96 return LineCol == DL.LineCol && ScopeIdx == DL.ScopeIdx;
  /external/llvm/lib/IR/
DebugLoc.cpp 21 if (ScopeIdx == 0) return 0;
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 24 milliseconds