Lines Matching refs:PLoc
1424 PresumedLoc PLoc = CGF.getContext().getSourceManager().getPresumedLoc(Loc); in getIdentStringFromSourceLocation() local
1425 OS << ";" << PLoc.getFilename() << ";"; in getIdentStringFromSourceLocation()
1428 OS << ";" << PLoc.getLine() << ";" << PLoc.getColumn() << ";;"; in getIdentStringFromSourceLocation()
1443 PresumedLoc PLoc = CGF.getContext().getSourceManager().getPresumedLoc(Loc); in emitUpdateLocation() local
1444 const char *FileName = PLoc.getFilename(); in emitUpdateLocation()
1445 unsigned Line = PLoc.getLine(); in emitUpdateLocation()
1446 unsigned Column = PLoc.getColumn(); in emitUpdateLocation()
1659 PresumedLoc PLoc = SM.getPresumedLoc(Loc); in getTargetEntryUniqueInfo() local
1660 assert(PLoc.isValid() && "Source location is expected to be always valid."); in getTargetEntryUniqueInfo()
1663 if (auto EC = llvm::sys::fs::getUniqueID(PLoc.getFilename(), ID)) { in getTargetEntryUniqueInfo()
1664 PLoc = SM.getPresumedLoc(Loc, /*UseLineDirectives=*/false); in getTargetEntryUniqueInfo()
1665 assert(PLoc.isValid() && "Source location is expected to be always valid."); in getTargetEntryUniqueInfo()
1666 if (auto EC = llvm::sys::fs::getUniqueID(PLoc.getFilename(), ID)) in getTargetEntryUniqueInfo()
1668 << PLoc.getFilename() << EC.message(); in getTargetEntryUniqueInfo()
1673 LineNum = PLoc.getLine(); in getTargetEntryUniqueInfo()
9287 PresumedLoc PLoc = CGF.getContext().getSourceManager().getPresumedLoc(Loc); in emitMappingInformation() local
9288 const char *FileName = PLoc.getFilename(); in emitMappingInformation()
9289 unsigned Line = PLoc.getLine(); in emitMappingInformation()
9290 unsigned Column = PLoc.getColumn(); in emitMappingInformation()