Home | History | Annotate | Download | only in CodeGen

Lines Matching refs:PLoc

251   PresumedLoc PLoc = SM.getPresumedLoc(Loc);
253 if (PLoc.isInvalid() || StringRef(PLoc.getFilename()).empty())
258 const char *fname = PLoc.getFilename();
268 llvm::DIFile F = DBuilder.createFile(PLoc.getFilename(), getCurrentDirname());
285 PresumedLoc PLoc = SM.getPresumedLoc(Loc.isValid() ? Loc : CurLoc);
286 return PLoc.isValid()? PLoc.getLine() : 0;
299 PresumedLoc PLoc = SM.getPresumedLoc(Loc.isValid() ? Loc : CurLoc);
300 return PLoc.isValid()? PLoc.getColumn() : 0;