HomeSort by relevance Sort by last modified time
    Searched refs:LC (Results 1 - 25 of 54) sorted by null

1 2 3

  /external/clang/lib/Analysis/
ProgramPoint.cpp 22 const LocationContext *LC,
28 return PreStmt(S, LC, tag);
30 return PostStmt(S, LC, tag);
32 return PreLoad(S, LC, tag);
34 return PostLoad(S, LC, tag);
36 return PreStore(S, LC, tag);
38 return PostLValue(S, LC, tag);
40 return PostStmtPurgeDeadSymbols(S, LC, tag);
42 return PreStmtPurgeDeadSymbols(S, LC, tag);
AnalysisDeclContext.cpp 388 const LocationContext *LC = this;
389 while (LC) {
390 if (const StackFrameContext *SFC = dyn_cast<StackFrameContext>(LC))
392 LC = LC->getParent();
401 bool LocationContext::isParentOf(const LocationContext *LC) const {
403 const LocationContext *Parent = LC->getParent();
407 LC = Parent;
408 } while (LC);
571 LocationContext *LC = &*I
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
PrettyStackTraceLocationContext.h 32 PrettyStackTraceLocationContext(const LocationContext *LC) : LCtx(LC) {
MemRegion.cpp 385 const LocationContext *LC,
389 ID.AddPointer(LC);
394 BlockDataRegion::ProfileRegion(ID, BC, LC, getSuperRegion());
727 getStackOrCaptureRegionForDeclContext(const LocationContext *LC,
730 while (LC) {
731 if (const StackFrameContext *SFC = dyn_cast<StackFrameContext>(LC)) {
736 dyn_cast<BlockInvocationContext>(LC)) {
749 LC = LC->getParent();
755 const LocationContext *LC) {
    [all...]
BugReporter.cpp 289 const LocationContext *LC;
295 R(r), PDC(pdc), NMC(Backmap), LC(r->getErrorNode()->getLocationContext())
307 ParentMap& getParentMap() { return LC->getParentMap(); }
330 return PathDiagnosticLocation(S, getSourceManager(), LC);
391 const LocationContext *LC, bool allowNestedContexts) {
400 return PathDiagnosticLocation(allowNestedContexts ? B : S, SMgr, LC);
405 return PathDiagnosticLocation(S, SMgr, LC);
410 return PathDiagnosticLocation(Parent, SMgr, LC);
412 return PathDiagnosticLocation(S, SMgr, LC);
419 return PathDiagnosticLocation(Parent, SMgr, LC);
    [all...]
CoreEngine.cpp 289 const LocationContext *LC = Pred->getLocationContext();
291 LC->getDecl(),
292 LC->getCFG()->getNumBlockIDs());
326 const LocationContext *LC = Pred->getLocationContext();
329 Counter = BCounterFactory.IncrementCount(Counter, LC->getCurrentStackFrame(),
ExprEngine.cpp 172 const LocationContext *LC,
175 SVal V = State->getSVal(Ex, LC);
222 TR = MRMgr.getCXXTempObjectRegion(Inner, LC);
227 V = getSValBuilder().conjureSymbolVal(Result, LC, TR->getValueType(),
238 State = State->BindExpr(Result, LC, Reg);
301 const LocationContext *LC) {
321 ParentMap &PM = LC->getAnalysisDeclContext()->getParentMap();
327 const LocationContext *LC,
333 assert(LC && "Must pass the current (or expiring) LocationContext");
343 // LC is the location context being destroyed, but SymbolReaper wants
    [all...]
  /external/llvm/include/llvm/Analysis/
LibCallAliasAnalysis.h 30 explicit LibCallAliasAnalysis(LibCallInfo *LC = 0)
31 : FunctionPass(ID), LCI(LC) {
34 explicit LibCallAliasAnalysis(char &ID, LibCallInfo *LC)
35 : FunctionPass(ID), LCI(LC) {
  /external/clang/lib/StaticAnalyzer/Checkers/
TraversalChecker.cpp 74 for (const LocationContext *LC = C.getLocationContext()->getParent();
75 LC != 0; LC = LC->getParent())
91 for (const LocationContext *LC = C.getLocationContext()->getParent();
92 LC != 0; LC = LC->getParent())
ExprInspectionChecker.cpp 59 const LocationContext *LC = N->getLocationContext();
63 SVal AssertionVal = State->getSVal(Assertion, LC);
88 const LocationContext *LC = N->getLocationContext();
92 if (LC->getCurrentStackFrame()->getParent() != 0)
105 const LocationContext *LC = N->getLocationContext();
112 if (LC->getCurrentStackFrame()->getParent() == 0)
AnalyzerStatsChecker.cpp 50 const LocationContext *LC = GraphRoot->getLocation().getLocationContext();
52 const Decl *D = LC->getDecl();
70 C = LC->getCFG();
133 PathDiagnosticLocation::createBegin(CS->getStmt(), SM, LC));
UnreachableCodeChecker.cpp 64 const LocationContext *LC = 0;
69 LC = P.getLocationContext();
72 D = LC->getAnalysisDeclContext()->getDecl();
75 C = LC->getAnalysisDeclContext()->getUnoptimizedCFG();
77 PM = &LC->getParentMap();
152 DL = PathDiagnosticLocation::createBegin(S, B.getSourceManager(), LC);
VLASizeChecker.cpp 145 const LocationContext *LC = C.getLocationContext();
147 state->getRegion(VD, LC)->getExtent(svalBuilder);
  /external/clang/test/CodeGenCXX/
mangle-extern-local.cpp 29 struct LC { int localfunc() { extern int var4; return var4; } };
30 LC localobj;
  /external/clang/examples/analyzer-plugin/
MainCallChecker.cpp 20 const LocationContext *LC = C.getLocationContext();
22 const FunctionDecl *FD = state->getSVal(Callee, LC).getAsFunctionDecl();
  /external/clang/test/Parser/
cxx-casting.cpp 59 #define LC <:
61 test1::A LC:B> c; // expected-error {{class template 'test1::A' requires template arguments}} expected-error 2{{}}
62 (void)static_cast LC:c>(&x); // expected-error {{expected '<' after 'static_cast'}} expected-error 2{{}} expected-note{{}}
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeIntegerTypes.cpp     [all...]
LegalizeDAG.cpp 101 SDValue ExpandLibCall(RTLIB::Libcall LC, SDNode *Node, bool isSigned);
102 SDValue ExpandLibCall(RTLIB::Libcall LC, EVT RetVT, const SDValue *Ops,
105 std::pair<SDValue, SDValue> ExpandChainLibCall(RTLIB::Libcall LC,
    [all...]
LegalizeFloatTypes.cpp 373 RTLIB::Libcall LC = RTLIB::getFPEXT(Op.getValueType(), N->getValueType(0));
374 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unsupported FP_EXTEND!");
375 return TLI.makeLibCall(DAG, LC, NVT, &Op, 1, false, SDLoc(N));
390 RTLIB::Libcall LC = RTLIB::getFPROUND(Op.getValueType(), N->getValueType(0));
391 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unsupported FP_ROUND!");
392 return TLI.makeLibCall(DAG, LC, NVT, &Op, 1, false, SDLoc(N));
573 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
575 t <= MVT::LAST_INTEGER_VALUETYPE && LC == RTLIB::UNKNOWN_LIBCALL; ++t) {
579 LC = Signed ? RTLIB::getSINTTOFP(NVT, RVT):RTLIB::getUINTTOFP (NVT, RVT);
581 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unsupported XINT_TO_FP!")
    [all...]
  /external/llvm/include/llvm/IR/
IRBuilder.h 575 if (Constant *LC = dyn_cast<Constant>(LHS))
577 return Insert(Folder.CreateAdd(LC, RC, HasNUW, HasNSW), Name);
589 if (Constant *LC = dyn_cast<Constant>(LHS))
591 return Insert(Folder.CreateFAdd(LC, RC), Name);
597 if (Constant *LC = dyn_cast<Constant>(LHS))
599 return Insert(Folder.CreateSub(LC, RC), Name);
611 if (Constant *LC = dyn_cast<Constant>(LHS))
613 return Insert(Folder.CreateFSub(LC, RC), Name);
619 if (Constant *LC = dyn_cast<Constant>(LHS))
621 return Insert(Folder.CreateMul(LC, RC), Name)
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
Store.h 87 virtual Loc getLValueVar(const VarDecl *VD, const LocationContext *LC) {
88 return svalBuilder.makeLoc(MRMgr.getVarRegion(VD, LC));
92 const LocationContext *LC) {
93 return loc::MemRegionVal(MRMgr.getCompoundLiteralRegion(CL, LC));
ProgramState.h 198 const VarRegion* getRegion(const VarDecl *D, const LocationContext *LC) const;
258 Loc getLValue(const VarDecl *D, const LocationContext *LC) const;
261 const LocationContext *LC) const;
630 const LocationContext *LC) const
632 return getStateManager().getRegionManager().getVarRegion(D, LC);
660 const LocationContext *LC) const {
661 return getStateManager().StoreMgr->getLValueVar(VD, LC);
665 const LocationContext *LC) const {
666 return getStateManager().StoreMgr->getLValueCompoundLiteral(literal, LC);
MemRegion.h 637 const LocationContext *LC; // Can be null */
641 BlockDataRegion(const BlockTextRegion *bc, const LocationContext *lc,
643 : TypedRegion(sreg, BlockDataRegionKind), BC(bc), LC(lc),
    [all...]
CoreEngine.h 187 const LocationContext *LC;
189 : Eng(E), Block(B), LC(N->getLocationContext()) { assert(B); }
198 LC->getCurrentStackFrame(),
  /external/libffi/src/powerpc/
aix_closure.S 87 LC..60:
168 lwz r4,LC..60(2) /* get address of jump table */

Completed in 1187 milliseconds

1 2 3