Home | History | Annotate | Download | only in CodeGen

Lines Matching refs:PLoc

226   PresumedLoc PLoc = SM.getPresumedLoc(Loc);
228 if (PLoc.isInvalid() || StringRef(PLoc.getFilename()).empty())
233 const char *fname = PLoc.getFilename();
243 llvm::DIFile F = DBuilder.createFile(PLoc.getFilename(), getCurrentDirname());
260 PresumedLoc PLoc = SM.getPresumedLoc(Loc.isValid() ? Loc : CurLoc);
261 return PLoc.isValid()? PLoc.getLine() : 0;
274 PresumedLoc PLoc = SM.getPresumedLoc(Loc.isValid() ? Loc : CurLoc);
275 return PLoc.isValid()? PLoc.getColumn() : 0;