Searched refs:SLoc (Results 1 - 11 of 11) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/ubsan/
H A Dubsan_diag.cpp87 SourceLocation SLoc = Loc.getSourceLocation(); local
88 if (!SLoc.isInvalid()) {
90 AI.file = internal_strdup(SLoc.getFilename());
91 AI.line = SLoc.getLine();
92 AI.column = SLoc.getColumn();
150 SourceLocation SLoc = Loc.getSourceLocation(); local
151 if (SLoc.isInvalid())
154 RenderSourceLocation(Buffer, SLoc.getFilename(), SLoc.getLine(),
155 SLoc
[all...]
H A Dubsan_handlers.cpp26 bool ignoreReport(SourceLocation SLoc, ReportOptions Opts, ErrorType ET) { argument
36 return SLoc.isDisabled() || IsPCSuppressed(ET, Opts.pc, SLoc.getFilename());
453 SourceLocation SLoc = Data->Loc.acquire(); local
454 if (ignoreReport(SLoc, Opts, ET))
456 Loc = SLoc;
H A Dubsan_diag.h231 bool ignoreReport(SourceLocation SLoc, ReportOptions Opts, ErrorType ET);
/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/
H A DSourceManager.cpp704 const SLocEntry &SLoc = getSLocEntry(FID, &MyInvalid); local
705 if (!SLoc.isFile() || MyInvalid) {
711 const llvm::MemoryBuffer *Buf = SLoc.getFile().getContentCache()->getBuffer(
1606 const SLocEntry &SLoc = getLocalSLocEntry(I, &Invalid); local
1610 if (SLoc.isFile() && SLoc.getFile().getContentCache() &&
1611 SLoc.getFile().getContentCache()->OrigEntry == SourceFile)
1617 const SLocEntry &SLoc = getLoadedSLocEntry(I); local
1618 if (SLoc.isFile() && SLoc
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/ASTDiff/
H A DASTDiff.cpp175 SourceLocation SLoc = N->getSourceRange().getBegin();
176 if (SLoc.isValid()) {
178 if (!SrcMgr.isInMainFile(SLoc))
181 if (SLoc != SrcMgr.getSpellingLoc(SLoc))
/freebsd-11-stable/contrib/llvm-project/clang/lib/Serialization/
H A DASTWriter.cpp1406 const SrcMgr::SLocEntry *SLoc = &SourceMgr.getLocalSLocEntry(I); local
1407 assert(&SourceMgr.getSLocEntry(FileID::get(I)) == SLoc);
1410 if (!SLoc->isFile())
1412 const SrcMgr::FileInfo &File = SLoc->getFile();
1898 const SrcMgr::SLocEntry *SLoc = &SourceMgr.getLocalSLocEntry(I); local
1900 assert(&SourceMgr.getSLocEntry(FID) == SLoc);
1907 if (SLoc->isFile()) {
1908 const SrcMgr::ContentCache *Cache = SLoc->getFile().getContentCache();
1919 Record.push_back(SLoc->getOffset() - 2);
1920 if (SLoc
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/Analysis/
H A DPathDiagnostic.cpp1145 if (const Stmt *SLoc = getLocation().getStmtOrNull())
1146 SLoc->dump();
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGStmt.cpp1062 llvm::Constant *SLoc = EmitCheckSourceLocation(S.getBeginLoc()); local
1064 new llvm::GlobalVariable(CGM.getModule(), SLoc->getType(), false,
1065 llvm::GlobalVariable::PrivateLinkage, SLoc);
H A DCGOpenMPRuntime.cpp10562 char ISA, unsigned VecRegSize, llvm::Function *Fn, SourceLocation SLoc) {
10576 CGM.getDiags().Report(SLoc, DiagID);
10586 CGM.getDiags().Report(SLoc, DiagID);
10599 CGM.getDiags().Report(SLoc, DiagID) << WDS;
10558 emitAArch64DeclareSimdFunction( CodeGenModule &CGM, const FunctionDecl *FD, unsigned UserVLEN, ArrayRef<ParamAttrTy> ParamAttrs, OMPDeclareSimdDeclAttr::BranchStateTy State, StringRef MangledName, char ISA, unsigned VecRegSize, llvm::Function *Fn, SourceLocation SLoc) argument
/freebsd-11-stable/contrib/llvm-project/clang/lib/Parse/
H A DParseOpenMP.cpp953 SourceLocation SLoc = P.getCurToken().getLocation(); local
962 P.Diag(SLoc, diag::err_omp_wrong_device_kind_trait) << KindName;
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaOpenMP.cpp119 SourceLocation SLoc; member in struct:__anon663::DSAStackTy::DefaultmapInfo
122 : ImplicitBehavior(M), SLoc(Loc) {}
611 DMI.SLoc = Loc;

Completed in 400 milliseconds