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

1 2

  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/hppa/reloc/
plabelbug.s 15 LC$0000:
29 ldil L'LC$0000,%r26
32 ldo R'LC$0000(%r26),%r26
reduce.s 17 LC$0000:
27 ldil L'LC$0000,%r19
28 ldw R'LC$0000(%r19),%r26
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/hppa/parse/
fixup7bug.s 1407 LC$0000:
1410 LC$0001:
1413 LC$0002:
1451 ldil L'LC$0000,%r25
1452 ldo R'LC$0000(%r25),%r25
1466 ldil L'LC$0001,%r25
1467 ldo R'LC$0001(%r25),%r25
1481 ldil L'LC$0002,%r25
1482 ldo R'LC$0002(%r25),%r25
1578 LC$0003:
    [all...]
calldatabug.s 3 LC$0000:
41 ldil L'LC$0000,%r26
42 ldo R'LC$0000(%r26),%r26
99 ldil L'LC$0000,%r26
100 ldo R'LC$0000(%r26),%r26
123 LC$0001:
144 ldil L'LC$0001,%r20
145 ldo R'LC$0001(%r20),%r21
162 ldil L'LC$0001,%r19
163 ldo R'LC$0001(%r19),%r2
    [all...]
  /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/lib/StaticAnalyzer/Checkers/
ExprInspectionChecker.cpp 68 const LocationContext *LC = N->getLocationContext();
72 SVal AssertionVal = State->getSVal(Assertion, LC);
96 const LocationContext *LC = C.getPredecessor()->getLocationContext();
100 if (LC->getCurrentStackFrame()->getParent() != nullptr)
127 const LocationContext *LC = C.getPredecessor()->getLocationContext();
134 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 168 const LocationContext *LC = C.getLocationContext();
170 state->getRegion(VD, LC)->getExtent(svalBuilder);
MallocChecker.cpp     [all...]
  /external/clang/test/Parser/
cxx-casting.cpp 76 #define LC <:
78 test1::A LC:B> c; // expected-error {{class template 'test1::A' requires template arguments}} expected-error 2{{}}
79 (void)static_cast LC:c>(&x); // expected-error {{expected '<' after 'static_cast'}} expected-error 2{{}} expected-note{{}}
  /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);
  /external/clang/lib/StaticAnalyzer/Core/
CoreEngine.cpp 290 const LocationContext *LC = Pred->getLocationContext();
292 LC->getDecl(),
293 LC->getCFG()->getNumBlockIDs());
327 const LocationContext *LC = Pred->getLocationContext();
330 Counter = BCounterFactory.IncrementCount(Counter, LC->getCurrentStackFrame(),
ExprEngineC.cpp 486 const LocationContext *LC = N->getLocationContext();
493 SVal InitVal = state->getSVal(InitEx, LC);
522 InitVal = svalBuilder.conjureSymbolVal(nullptr, InitEx, LC, Ty,
529 evalBind(Dst2, DS, UpdatedN, state->getLValue(VD, LC), InitVal, true);
    [all...]
PathDiagnostic.cpp 642 PathDiagnosticLocation::createDeclBegin(const LocationContext *LC,
646 dyn_cast_or_null<CompoundStmt>(LC->getDecl()->getBody()))
656 PathDiagnosticLocation::createDeclEnd(const LocationContext *LC,
658 SourceLocation L = LC->getDecl()->getBodyRBrace();
752 const LocationContext *LC = N->getLocationContext();
763 return PathDiagnosticLocation::createEnd(S, SM, LC);
766 return PathDiagnosticLocation(S, SM, LC);
767 return PathDiagnosticLocation(getValidSourceLocation(S, LC), SM);
    [all...]
ExprEngine.cpp 184 const LocationContext *LC,
187 SVal V = State->getSVal(Ex, LC);
234 TR = MRMgr.getCXXTempObjectRegion(Inner, LC);
239 V = getSValBuilder().conjureSymbolVal(Result, LC, TR->getValueType(),
250 State = State->BindExpr(Result, LC, Reg);
318 const LocationContext *LC) {
338 ParentMap &PM = LC->getAnalysisDeclContext()->getParentMap();
344 const LocationContext *LC,
350 assert(LC && "Must pass the current (or expiring) LocationContext");
360 // LC is the location context being destroyed, but SymbolReaper wants
    [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...]
  /external/clang/lib/Analysis/
AnalysisDeclContext.cpp 159 for (const LambdaCapture &LC : parent->captures()) {
160 if (!LC.capturesVariable())
163 VarDecl *VD = LC.getCapturedVar();
422 const LocationContext *LC = this;
423 while (LC) {
424 if (const StackFrameContext *SFC = dyn_cast<StackFrameContext>(LC))
426 LC = LC->getParent();
435 bool LocationContext::isParentOf(const LocationContext *LC) const {
437 const LocationContext *Parent = LC->getParent()
    [all...]
  /toolchain/binutils/binutils-2.25/opcodes/
micromips-opc.c 206 #define LC INSN_LOAD_COPROC
    [all...]
mips-opc.c 272 #define LC INSN_LOAD_COPROC
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
CoreEngine.h 182 const LocationContext *LC;
184 : Eng(E), Block(B), LC(N->getLocationContext()) { assert(B); }
193 LC->getCurrentStackFrame(),
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...]
  /external/llvm/lib/Analysis/
ScalarEvolution.cpp 532 const SCEVConstant *LC = cast<SCEVConstant>(LHS);
536 const APInt &LA = LC->getAPInt();
576 const SCEVNAryExpr *LC = cast<SCEVNAryExpr>(LHS);
580 unsigned LNumOps = LC->getNumOperands(), RNumOps = RC->getNumOperands();
587 long X = compare(LC->getOperand(i), RC->getOperand(i));
595 const SCEVUDivExpr *LC = cast<SCEVUDivExpr>(LHS);
599 long X = compare(LC->getLHS(), RC->getLHS());
602 return compare(LC->getRHS(), RC->getRHS());
608 const SCEVCastExpr *LC = cast<SCEVCastExpr>(LHS);
612 return compare(LC->getOperand(), RC->getOperand())
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeFloatTypes.cpp 457 RTLIB::Libcall LC = RTLIB::getFPEXT(Op.getValueType(), N->getValueType(0));
460 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unsupported FP_EXTEND!");
461 return TLI.makeLibCall(DAG, LC, NVT, Op, false, SDLoc(N)).first;
475 RTLIB::Libcall LC = RTLIB::getFPEXT(MVT::f32, N->getValueType(0));
476 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unsupported FP_EXTEND!");
477 return TLI.makeLibCall(DAG, LC, NVT, Res32, false, SDLoc(N)).first;
489 RTLIB::Libcall LC = RTLIB::getFPROUND(Op.getValueType(), N->getValueType(0));
490 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unsupported FP_ROUND!");
491 return TLI.makeLibCall(DAG, LC, NVT, Op, false, SDLoc(N)).first;
    [all...]

Completed in 408 milliseconds

1 2