HomeSort by relevance Sort by last modified time
    Searched refs:LC (Results 1 - 25 of 61) 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 398 const LocationContext *LC = this;
399 while (LC) {
400 if (const StackFrameContext *SFC = dyn_cast<StackFrameContext>(LC))
402 LC = LC->getParent();
411 bool LocationContext::isParentOf(const LocationContext *LC) const {
413 const LocationContext *Parent = LC->getParent();
417 LC = Parent;
418 } while (LC);
573 LocationContext *LC = &*I
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
PrettyStackTraceLocationContext.h 32 PrettyStackTraceLocationContext(const LocationContext *LC) : LCtx(LC) {
MemRegion.cpp 385 const LocationContext *LC,
390 ID.AddPointer(LC);
396 BlockDataRegion::ProfileRegion(ID, BC, LC, BlockCount, getSuperRegion());
738 getStackOrCaptureRegionForDeclContext(const LocationContext *LC,
741 while (LC) {
742 if (const StackFrameContext *SFC = dyn_cast<StackFrameContext>(LC)) {
747 dyn_cast<BlockInvocationContext>(LC)) {
760 LC = LC->getParent();
766 const LocationContext *LC) {
    [all...]
BugReporter.cpp 325 const LocationContext *LC;
331 R(r), PDC(pdc), NMC(Backmap), LC(r->getErrorNode()->getLocationContext())
343 ParentMap& getParentMap() { return LC->getParentMap(); }
366 return PathDiagnosticLocation(S, getSourceManager(), LC);
427 const LocationContext *LC, bool allowNestedContexts) {
436 return PathDiagnosticLocation(allowNestedContexts ? B : S, SMgr, LC);
441 return PathDiagnosticLocation(S, SMgr, LC);
446 return PathDiagnosticLocation(Parent, SMgr, LC);
448 return PathDiagnosticLocation(S, SMgr, LC);
455 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(),
  /external/llvm/include/llvm/Analysis/
LibCallAliasAnalysis.h 30 explicit LibCallAliasAnalysis(LibCallInfo *LC = nullptr)
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 != nullptr; LC = LC->getParent())
91 for (const LocationContext *LC = C.getLocationContext()->getParent();
92 LC != nullptr; LC = LC->getParent())
ExprInspectionChecker.cpp 61 const LocationContext *LC = N->getLocationContext();
65 SVal AssertionVal = State->getSVal(Assertion, LC);
90 const LocationContext *LC = N->getLocationContext();
94 if (LC->getCurrentStackFrame()->getParent() != nullptr)
118 const LocationContext *LC = N->getLocationContext();
125 if (LC->getCurrentStackFrame()->getParent() == nullptr)
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 = nullptr;
69 LC = P.getLocationContext();
70 if (!LC->inTopFrame())
74 D = LC->getAnalysisDeclContext()->getDecl();
78 C = LC->getAnalysisDeclContext()->getUnoptimizedCFG();
80 PM = &LC->getParentMap();
155 DL = PathDiagnosticLocation::createBegin(S, B.getSourceManager(), LC);
VLASizeChecker.cpp 146 const LocationContext *LC = C.getLocationContext();
148 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 102 SDValue ExpandLibCall(RTLIB::Libcall LC, SDNode *Node, bool isSigned);
103 SDValue ExpandLibCall(RTLIB::Libcall LC, EVT RetVT, const SDValue *Ops,
106 std::pair<SDValue, SDValue> ExpandChainLibCall(RTLIB::Libcall LC,
    [all...]
LegalizeFloatTypes.cpp 376 RTLIB::Libcall LC = RTLIB::getFPEXT(Op.getValueType(), N->getValueType(0));
377 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unsupported FP_EXTEND!");
378 return TLI.makeLibCall(DAG, LC, NVT, &Op, 1, false, SDLoc(N)).first;
393 RTLIB::Libcall LC = RTLIB::getFPROUND(Op.getValueType(), N->getValueType(0));
394 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unsupported FP_ROUND!");
395 return TLI.makeLibCall(DAG, LC, NVT, &Op, 1, false, SDLoc(N)).first;
590 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
592 t <= MVT::LAST_INTEGER_VALUETYPE && LC == RTLIB::UNKNOWN_LIBCALL; ++t) {
596 LC = Signed ? RTLIB::getSINTTOFP(NVT, RVT):RTLIB::getUINTTOFP (NVT, RVT);
598 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unsupported XINT_TO_FP!")
    [all...]
  /external/llvm/include/llvm/IR/
IRBuilder.h 634 if (Constant *LC = dyn_cast<Constant>(LHS))
636 return Insert(Folder.CreateAdd(LC, RC, HasNUW, HasNSW), Name);
648 if (Constant *LC = dyn_cast<Constant>(LHS))
650 return Insert(Folder.CreateFAdd(LC, RC), Name);
656 if (Constant *LC = dyn_cast<Constant>(LHS))
658 return Insert(Folder.CreateSub(LC, RC, HasNUW, HasNSW), Name);
670 if (Constant *LC = dyn_cast<Constant>(LHS))
672 return Insert(Folder.CreateFSub(LC, RC), Name);
678 if (Constant *LC = dyn_cast<Constant>(LHS))
680 return Insert(Folder.CreateMul(LC, RC, HasNUW, HasNSW), 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;
257 Loc getLValue(const VarDecl *D, const LocationContext *LC) const;
260 const LocationContext *LC) const;
629 const LocationContext *LC) const
631 return getStateManager().getRegionManager().getVarRegion(D, LC);
659 const LocationContext *LC) const {
660 return getStateManager().StoreMgr->getLValueVar(VD, LC);
664 const LocationContext *LC) const {
665 return getStateManager().StoreMgr->getLValueCompoundLiteral(literal, LC);
MemRegion.h 634 const LocationContext *LC; // Can be null */
639 BlockDataRegion(const BlockTextRegion *bc, const LocationContext *lc,
641 : 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/compiler-rt/lib/sanitizer_common/tests/
sanitizer_format_interceptor_test.cc 44 static const unsigned LC = sizeof(wchar_t);
119 testScanf("%lc", 1, LC);
135 testScanf("%10ls", 1, 11 * LC);
136 testScanf("%10lc", 1, 10 * LC);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
hidpi.h 314 #define HidP_GetButtonsEx(RT, LC, BL, UL, PD, R, RL) \
315 HidP_GetUsagesEx(RT, LC, BL, UL, PD, R, RL)
510 #define HidP_SetButtons(RT, UP, LC, UL1, UL2, PD, R, RL) \
511 HidP_SetUsages(RT, UP, LC, UL1, UL2, PD, R, RL)
593 #define HidP_UnsetButtons(RT, UP, LC, UL1, UL2, PD, R, RL) \
594 HidP_UnsetUsages(RT, UP, LC, UL1, UL2, PD, R, RL)

Completed in 755 milliseconds

1 2 3