HomeSort by: relevance | last modified time | path
    Searched defs:SM (Results 1 - 25 of 193) sorted by relevancy

1 2 3 4 5 6 7 8

  /src/external/apache2/llvm/dist/clang/lib/Frontend/Rewrite/
RewriteTest.cpp 19 SourceManager &SM = PP.getSourceManager();
22 TokenRewriter Rewriter(SM.getMainFileID(), SM, LangOpts);
  /src/external/apache2/llvm/dist/clang/include/clang/Basic/
NoSanitizeList.h 31 SourceManager &SM;
35 SourceManager &SM);
PrettyStackTrace.h 27 SourceManager &SM;
31 PrettyStackTraceLoc(SourceManager &sm, SourceLocation L, const char *Msg)
32 : SM(sm), Loc(L), Message(Msg) {}
ProfileList.h 36 SourceManager &SM;
39 ProfileList(ArrayRef<std::string> Paths, SourceManager &SM);
XRayLists.h 33 SourceManager &SM;
38 ArrayRef<std::string> AttrListPaths, SourceManager &SM);
  /src/external/apache2/llvm/dist/llvm/lib/Target/SystemZ/
SystemZAsmPrinter.h 27 StackMaps SM;
31 : AsmPrinter(TM, std::move(Streamer)), SM(*this) {}
44 SM.reset();
  /src/external/apache2/llvm/dist/clang/lib/AST/
DataCollection.cpp 36 SourceManager &SM = Context.getSourceManager();
42 Loc = SM.getImmediateMacroCallerLoc(Loc);
  /src/external/apache2/llvm/dist/llvm/tools/llvm-yaml-parser-fuzzer/
yaml-parser-fuzzer.cpp 15 SourceMgr SM;
17 SM);
  /src/external/apache2/llvm/dist/clang/include/clang/Analysis/
MacroExpansionContext.h 117 SourceManager *SM = nullptr;
  /src/external/apache2/llvm/dist/llvm/include/llvm/MCA/Stages/
InstructionTables.h 29 const MCSchedModel &SM;
35 : Stage(), SM(Model), Masks(Model.getNumProcResourceKinds()) {
EntryStage.h 29 SourceMgr &SM;
39 EntryStage(SourceMgr &SM) : CurrentInstruction(), SM(SM), NumRetired(0) { }
  /src/external/apache2/llvm/dist/llvm/lib/AsmParser/
Parser.cpp 29 SourceMgr SM;
31 SM.AddNewSourceBuffer(std::move(Buf), SMLoc());
34 return LLParser(F.getBuffer(), SM, Err, M, Index,
147 SourceMgr SM;
149 SM.AddNewSourceBuffer(std::move(Buf), SMLoc());
154 return LLParser(F.getBuffer(), SM, Err, nullptr, &Index, unusedContext)
184 SourceMgr SM;
186 SM.AddNewSourceBuffer(std::move(Buf), SMLoc());
188 if (LLParser(Asm, SM, Err, const_cast<Module *>(&M), nullptr, M.getContext())
201 SourceMgr SM;
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
LexicallyOrderedRecursiveASTVisitor.h 64 LexicallyOrderedRecursiveASTVisitor(const SourceManager &SM) : SM(SM) {}
101 if (!SM.isBeforeInTranslationUnit(Sibling->getBeginLoc(),
157 const SourceManager &SM;
  /src/external/apache2/llvm/dist/clang/include/clang/Tooling/
JSONCompilationDatabase.h 100 YAMLStream(this->Database->getBuffer(), SM) {}
135 llvm::SourceMgr SM;
  /src/external/apache2/llvm/dist/clang/lib/Analysis/
CFGStmtMap.cpp 27 SMap *SM = AsMap(M);
33 SMap::iterator I = SM->find(X);
34 if (I != SM->end()) {
38 (*SM)[X] = B;
48 static void Accumulate(SMap &SM, CFGBlock *B) {
56 CFGBlock *&Entry = SM[CS->getStmt()];
68 SM[Label] = B;
74 SM[Term] = B;
81 SMap *SM = new SMap();
86 Accumulate(*SM, *I)
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Frontend/
LogDiagnosticPrinter.cpp 118 const SourceManager &SM = Info.getSourceManager();
119 FileID FID = SM.getMainFileID();
121 const FileEntry *FE = SM.getFileEntryForID(FID);
144 const SourceManager &SM = Info.getSourceManager();
145 PresumedLoc PLoc = SM.getPresumedLoc(Info.getLocation());
149 FileID FID = SM.getFileID(Info.getLocation());
151 const FileEntry *FE = SM.getFileEntryForID(FID);
  /src/external/apache2/llvm/dist/clang/lib/Lex/
TokenConcatenation.cpp 53 SourceManager &SM = PP.getSourceManager();
54 const char *Ptr = SM.getCharacterData(SM.getSpellingLoc(Tok.getLocation()));
136 SourceManager &SM = PP.getSourceManager();
137 return *SM.getCharacterData(SM.getSpellingLoc(Tok.getLocation()));
171 SourceManager &SM = PP.getSourceManager();
172 SourceLocation PrevSpellLoc = SM.getSpellingLoc(PrevTok.getLocation());
173 SourceLocation SpellLoc = SM.getSpellingLoc(Tok.getLocation());
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
TextDiagnostics.cpp 67 SourceManager &SM = DiagEng.getSourceManager();
80 Replacement Repl(SM, Hint.RemoveRange, Hint.CodeToInsert);
130 Rewriter Rewrite(SM, LO);
  /src/external/apache2/llvm/dist/clang/lib/Tooling/Inclusions/
HeaderIncludes.cpp 45 SourceManager &SM = VirtualSM.get();
46 Lexer Lex(SM.getMainFileID(), SM.getBufferOrFake(SM.getMainFileID()), SM,
51 return GetOffsetAfterSequence(SM, Lex, Tok);
87 [&](std::function<unsigned(const SourceManager &SM, Lexer &Lex,
92 [&Consume](const SourceManager &SM, Lexer &Lex, Token Tok) {
94 unsigned InitialOffset = SM.getFileOffset(Tok.getLocation());
95 return std::max(InitialOffset, Consume(SM, Lex, Tok))
    [all...]
  /src/external/apache2/llvm/dist/clang/tools/clang-extdef-mapping/
ClangExtDefMapGen.cpp 37 : Ctx(Context), SM(Context.getSourceManager()) {}
53 SourceManager &SM;
87 SM.getFileEntryForID(SM.getMainFileID())->tryGetRealPathName());
96 if (SM.isInMainFile(defStart))
  /src/external/apache2/llvm/dist/clang/tools/libclang/
CIndexInclusionStack.cpp 25 SourceManager &SM = CXXUnit->getSourceManager();
28 const bool HasPreamble = SM.getPreambleFileID().isValid();
33 IsLocal ? SM.getLocalSLocEntry(i) : SM.getLoadedSLocEntry(i, &Invalid);
50 PresumedLoc PLoc = SM.getPresumedLoc(L);
76 SourceManager &SM = cxtu::getASTUnit(TU)->getSourceManager();
77 const unsigned n = SM.local_sloc_entry_size();
84 if (n == 1 || SM.getPreambleFileID().isValid()) {
85 getInclusions(/*IsLocal=*/false, SM.loaded_sloc_entry_size(), TU, CB,
  /src/external/apache2/llvm/dist/llvm/lib/MC/
MCSchedule.cpp 91 const MCSchedModel &SM = STI.getSchedModel();
97 unsigned NumUnits = SM.getProcResource(I->ProcResourceIdx)->NumUnits;
106 return ((double)SCDesc.NumMicroOps) / SM.IssueWidth;
  /src/external/apache2/llvm/dist/llvm/lib/MCA/
Context.cpp 33 const MCSchedModel &SM = STI.getSchedModel();
35 if (!SM.isOutOfOrder())
39 auto RCU = std::make_unique<RetireControlUnit>(SM);
40 auto PRF = std::make_unique<RegisterFile>(SM, MRI, Opts.RegisterFileSize);
41 auto LSU = std::make_unique<LSUnit>(SM, Opts.LoadQueueSize,
43 auto HWS = std::make_unique<Scheduler>(SM, *LSU);
73 const MCSchedModel &SM = STI.getSchedModel();
74 auto PRF = std::make_unique<RegisterFile>(SM, MRI, Opts.RegisterFileSize);
77 auto InOrderIssue = std::make_unique<InOrderIssueStage>(*PRF, SM, STI);
  /src/external/apache2/llvm/dist/llvm/lib/Remarks/
YAMLRemarkParser.h 35 YAMLParseError(StringRef Message, SourceMgr &SM, yaml::Stream &Stream,
57 SourceMgr SM;
  /src/external/apache2/llvm/dist/llvm/tools/llvm-mca/Views/
InstructionView.cpp 40 const MCSchedModel &SM = STI.getSchedModel();
41 for (unsigned I = 1, E = SM.getNumProcResourceKinds(); I < E; ++I) {
42 const MCProcResourceDesc &ProcResource = *SM.getProcResource(I);

Completed in 60 milliseconds

1 2 3 4 5 6 7 8