HomeSort by relevance Sort by last modified time
    Searched defs:Loc (Results 26 - 50 of 107) sorted by null

12 3 4 5

  /external/clang/lib/StaticAnalyzer/Frontend/
AnalysisConsumer.cpp 125 PresumedLoc Loc = SM.getPresumedLoc(D->getLocation());
126 if (Loc.isValid()) {
127 llvm::errs() << "ANALYZE: " << Loc.getFilename();
134 llvm::errs() << ' ' << "block(line:" << Loc.getLine() << ",col:"
135 << Loc.getColumn() << '\n';
  /external/llvm/include/llvm/CodeGen/
GCMetadata.h 63 DebugLoc Loc;
66 : Kind(K), Label(L), Loc(DL) {}
MachineFunction.h 214 Ty *Loc = static_cast<Ty*>(Allocator.Allocate(sizeof(Ty),
216 MFInfo = new (Loc) Ty(*this);
CallingConvLower.h 48 /// Loc is either a stack offset or a register number.
49 unsigned Loc;
51 /// isMem - True if this is a memory loc, false if it is a register loc.
72 Ret.Loc = RegNo;
95 Ret.Loc = Offset;
121 unsigned getLocReg() const { assert(isRegLoc()); return Loc; }
122 unsigned getLocMemOffset() const { assert(isMemLoc()); return Loc; }
  /external/llvm/lib/CodeGen/
MachineSSAUpdater.cpp 185 MachineBasicBlock::iterator Loc = BB->empty() ? BB->end() : BB->front();
187 Loc, VRC, MRI, TII);
314 MachineBasicBlock::iterator Loc = BB->empty() ? BB->end() : BB->front();
315 MachineInstr *PHI = InsertNewDef(TargetOpcode::PHI, BB, Loc,
  /external/llvm/lib/Transforms/Scalar/
DeadStoreElimination.cpp 169 AliasAnalysis::Location Loc = AA.getLocationForDest(MI);
173 if (Loc.Size == AliasAnalysis::UnknownSize && AA.getTargetData() == 0)
175 return Loc;
395 // If the read and written loc obviously don't alias, it isn't a read.
472 AliasAnalysis::Location Loc = getLocForWrite(Inst, *AA);
475 if (Loc.Ptr == 0)
480 // skip any instructions that 'Loc' clearly doesn't interact with. If we
493 // completely obliterated by the store to 'Loc', and c) which we know that
495 if (isRemovable(DepWrite) && isCompleteOverwrite(Loc, DepLoc, *AA) &&
496 !isPossibleSelfRead(Inst, Loc, DepWrite, *AA))
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
SVals.h 10 // This file defines SVal, Loc, and NonLoc, classes that represent
53 LocKind = 2, // for subclass Loc (an L-value)
128 /// getAsLocSymbol - If this SVal is a location (subclasses Loc) and
251 class Loc : public DefinedSVal {
253 explicit Loc(unsigned SubKind, const void* D)
259 Loc(const Loc& X) : DefinedSVal(X.Data, true, X.getSubKind()) {}
350 assert (isa<Loc>(data.first));
355 Loc getLoc() const {
356 return cast<Loc>(((std::pair<SVal, uintptr_t>*) Data)->first)
429 namespace loc { namespace in namespace:clang::ento
    [all...]
SymbolManager.h 420 const Stmt *Loc;
425 : LCtx(ctx), Loc(s), SymMgr(symmgr) {}
430 const Stmt *getCurrentStatement() const { return Loc; }
  /external/clang/lib/Lex/
PPMacroExpansion.cpp 286 SourceLocation Loc =
289 Identifier.setLocation(Loc);
830 SourceLocation Loc = Tok.getLocation();
834 Loc = AdvanceToTokenCharacter(Loc, 0)
    [all...]
PPDirectives.cpp 833 // If there is no include loc (main file) or if the include loc is in a
    [all...]
  /external/clang/lib/Parse/
ParseTemplate.cpp     [all...]
ParseExpr.cpp     [all...]
Parser.cpp 96 DiagnosticBuilder Parser::Diag(SourceLocation Loc, unsigned DiagID) {
97 return Diags.Report(Loc, DiagID);
107 /// \param Loc The location where we'll emit the diagnostic.
108 /// \param Loc The kind of diagnostic to emit.
110 void Parser::SuggestParentheses(SourceLocation Loc, unsigned DK,
116 Diag(Loc, DK);
120 Diag(Loc, DK)
175 SourceLocation Loc = Tok.getLocation();
176 Diag(Loc, DiagID)
178 << FixItHint::CreateReplacement(SourceRange(Loc),
    [all...]
  /external/clang/lib/Sema/
Sema.cpp 212 bool Sema::makeUnavailableInSystemHeader(SourceLocation loc,
223 if (!Context.getSourceManager().isInSystemHeader(loc))
229 fn->addAttr(new (Context) UnavailableAttr(loc, Context, msg));
382 FullSourceLoc loc(i->second, S.Context.getSourceManager());
383 undefined.push_back(UndefinedInternal(decl, loc));
667 Sema::SemaDiagnosticBuilder Sema::Diag(SourceLocation Loc, unsigned DiagID) {
668 DiagnosticBuilder DB = Diags.Report(Loc, DiagID);
673 Sema::Diag(SourceLocation Loc, const PartialDiagnostic& PD) {
674 SemaDiagnosticBuilder Builder(Diag(Loc, PD.getDiagID()));
683 /// instantiation loc
685 SourceLocation loc = locref; local
    [all...]
SemaObjCProperty.cpp 682 SourceLocation Loc = PropertyIvarLoc;
683 if (Loc.isInvalid())
684 Loc = PropertyLoc;
685 compat = (CheckAssignmentConstraints(Loc, PropertyIvarType, IvarType)
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
CheckerManager.cpp 203 SVal Loc;
212 SVal loc, bool isLoad, const Stmt *s, ExprEngine &eng)
213 : Checkers(checkers), Loc(loc), IsLoad(isLoad), S(s), Eng(eng) { }
220 checkFn(Loc, IsLoad, C);
238 SVal Loc;
247 SVal loc, SVal val, const Stmt *s, ExprEngine &eng)
248 : Checkers(checkers), Loc(loc), Val(val), S(s), Eng(eng) { }
254 checkFn(Loc, Val, C)
    [all...]
HTMLDiagnostics.cpp 476 SourceLocation Loc =
479 R.InsertTextBefore(Loc, os.str());
  /external/llvm/lib/Analysis/
DebugInfo.cpp 803 DebugLoc Loc = BI->getDebugLoc();
804 if (Loc.isUnknown())
808 DIDescriptor Scope(Loc.getScope(Ctx));
817 if (MDNode *IA = Loc.getInlinedAt(Ctx))
837 void DebugInfoFinder::processLocation(DILocation Loc) {
838 if (!Loc.Verify()) return;
839 DIDescriptor S(Loc.getScope());
846 processLocation(Loc.getOrigLocation());
MemoryDependenceAnalysis.cpp 115 /// location, fill in Loc with the details, otherwise set Loc.Ptr to null.
120 AliasAnalysis::Location &Loc,
124 Loc = AliasAnalysis::Location();
127 Loc = AA->getLocation(LI);
133 Loc = AliasAnalysis::Location();
136 Loc = AA->getLocation(SI);
141 Loc = AA->getLocation(V);
147 Loc = AliasAnalysis::Location(CI->getArgOperand(0));
156 Loc = AliasAnalysis::Location(II->getArgOperand(1)
    [all...]
  /external/llvm/lib/AsmParser/
LLParser.h 57 LLLexer::LocTy Loc;
102 SMLoc Loc;
145 GlobalValue *GetGlobalVal(const std::string &N, Type *Ty, LocTy Loc);
146 GlobalValue *GetGlobalVal(unsigned ID, Type *Ty, LocTy Loc);
155 bool ParseOptionalToken(lltok::Kind T, bool &Present, LocTy *Loc = 0) {
159 if (Loc)
160 *Loc = Lex.getLoc();
168 bool ParseUInt32(unsigned &Val, LocTy &Loc) {
169 Loc = Lex.getLoc();
206 bool ParseGlobal(const std::string &Name, LocTy Loc, unsigned Linkage
    [all...]
  /external/llvm/lib/MC/MCParser/
DarwinAsmParser.cpp 410 SMLoc Loc = getLexer().getLoc();
414 return Error(Loc, "expected identifier after '.section' directive");
443 return Error(Loc, ErrorStr.c_str());
  /external/llvm/lib/Transforms/IPO/
ArgumentPromotion.cpp 463 AliasAnalysis::Location Loc = AA.getLocation(Load);
464 if (AA.canInstructionRangeModify(BB->front(), *Load, Loc))
475 if (AA.canBasicBlockModify(**I, Loc))
    [all...]
  /external/llvm/utils/FileCheck/
FileCheck.cpp 441 /// Loc - The location in the match file that the check string was specified.
442 SMLoc Loc;
454 : Pat(P), Loc(L), IsCheckNext(isCheckNext) {}
610 SM.PrintMessage(CheckStr.Loc, "expected string not found in input",
713 SM.PrintMessage(CheckStr.Loc,
724 SM.PrintMessage(CheckStr.Loc,
  /external/clang/lib/ARCMigrate/
TransformActions.cpp 47 SourceLocation Loc;
133 void insert(SourceLocation loc, llvm::StringRef text);
134 void insertAfterToken(SourceLocation loc, llvm::StringRef text);
140 void replaceText(SourceLocation loc, llvm::StringRef text,
150 bool canInsert(SourceLocation loc);
151 bool canInsertAfterToken(SourceLocation loc);
154 bool canReplaceText(SourceLocation loc, llvm::StringRef text);
156 void commitInsert(SourceLocation loc, StringRef text);
157 void commitInsertAfterToken(SourceLocation loc, StringRef text);
161 void commitReplaceText(SourceLocation loc, llvm::StringRef text
558 SourceLocation loc = I->first; local
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfDebug.h 68 MachineLocation Loc;
90 : Begin(B), End(E), Loc(L), Variable(V), Merged(false),
107 if (!(Begin && Loc == Next->Loc && End == Next->Begin))
325 DbgVariable *findAbstractVariable(DIVariable &Var, DebugLoc Loc);
389 /// emitDebugLoc - Emit visible names into a debug loc section.
451 /// findDbgScope - Find DbgScope for the debug loc.

Completed in 778 milliseconds

12 3 4 5