HomeSort by relevance Sort by last modified time
    Searched refs:LC (Results 26 - 50 of 94) sorted by null

12 3 4

  /external/llvm/include/llvm/IR/
IRBuilder.h 780 if (Constant *LC = dyn_cast<Constant>(LHS))
782 return Insert(Folder.CreateAdd(LC, RC, HasNUW, HasNSW), Name);
794 if (Constant *LC = dyn_cast<Constant>(LHS))
796 return Insert(Folder.CreateFAdd(LC, RC), Name);
802 if (Constant *LC = dyn_cast<Constant>(LHS))
804 return Insert(Folder.CreateSub(LC, RC, HasNUW, HasNSW), Name);
816 if (Constant *LC = dyn_cast<Constant>(LHS))
818 return Insert(Folder.CreateFSub(LC, RC), Name);
824 if (Constant *LC = dyn_cast<Constant>(LHS))
826 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 221 const VarRegion* getRegion(const VarDecl *D, const LocationContext *LC) const;
280 Loc getLValue(const VarDecl *D, const LocationContext *LC) const;
283 const LocationContext *LC) const;
638 const LocationContext *LC) const
640 return getStateManager().getRegionManager().getVarRegion(D, LC);
695 const LocationContext *LC) const {
696 return getStateManager().StoreMgr->getLValueVar(VD, LC);
700 const LocationContext *LC) const {
701 return getStateManager().StoreMgr->getLValueCompoundLiteral(literal, LC);
MemRegion.h 630 const LocationContext *LC; // Can be null */
635 BlockDataRegion(const BlockCodeRegion *bc, const LocationContext *lc,
637 : TypedRegion(sreg, BlockDataRegionKind), BC(bc), LC(lc),
    [all...]
CoreEngine.h 185 const LocationContext *LC;
187 : Eng(E), Block(B), LC(N->getLocationContext()) { assert(B); }
196 LC->getCurrentStackFrame(),
ExprEngine.h 175 /// \param LC The location context of the \p ReferenceStmt. A null location
188 const Stmt *ReferenceStmt, const LocationContext *LC,
615 const LocationContext *LC,
  /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/llvm/lib/Target/ARM/
ARMSelectionDAGInfo.h 64 RTLIB::Libcall LC) const;
ARMSelectionDAGInfo.cpp 26 SDValue Size, unsigned Align, RTLIB::Libcall LC) const {
33 if (std::strncmp(TLI->getLibcallName(LC), "__aeabi", 7) != 0)
45 switch (LC) {
118 TLI->getLibcallCallingConv(LC), Type::getVoidTy(*DAG.getContext()),
ARMFastISel.cpp     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeIntegerTypes.cpp     [all...]
LegalizeFloatTypes.cpp 474 RTLIB::Libcall LC = RTLIB::getFPEXT(Op.getValueType(), N->getValueType(0));
477 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unsupported FP_EXTEND!");
478 return TLI.makeLibCall(DAG, LC, NVT, Op, false, SDLoc(N)).first;
492 RTLIB::Libcall LC = RTLIB::getFPEXT(MVT::f32, N->getValueType(0));
493 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unsupported FP_EXTEND!");
494 return TLI.makeLibCall(DAG, LC, NVT, Res32, false, SDLoc(N)).first;
506 RTLIB::Libcall LC = RTLIB::getFPROUND(Op.getValueType(), N->getValueType(0));
507 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unsupported FP_ROUND!");
508 return TLI.makeLibCall(DAG, LC, NVT, Op, false, SDLoc(N)).first;
    [all...]
LegalizeDAG.cpp 112 SDValue ExpandLibCall(RTLIB::Libcall LC, SDNode *Node, bool isSigned);
113 SDValue ExpandLibCall(RTLIB::Libcall LC, EVT RetVT, const SDValue *Ops,
116 std::pair<SDValue, SDValue> ExpandChainLibCall(RTLIB::Libcall LC,
    [all...]
LegalizeTypes.cpp     [all...]
  /external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
LegalizeFloatTypes.cpp 357 RTLIB::Libcall LC = RTLIB::getFPEXT(Op.getValueType(), N->getValueType(0));
358 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unsupported FP_EXTEND!");
359 return MakeLibCall(LC, NVT, &Op, 1, false, N->getDebugLoc());
374 RTLIB::Libcall LC = RTLIB::getFPROUND(Op.getValueType(), N->getValueType(0));
375 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unsupported FP_ROUND!");
376 return MakeLibCall(LC, NVT, &Op, 1, false, N->getDebugLoc());
549 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
551 t <= MVT::LAST_INTEGER_VALUETYPE && LC == RTLIB::UNKNOWN_LIBCALL; ++t) {
555 LC = Signed ? RTLIB::getSINTTOFP(NVT, RVT):RTLIB::getUINTTOFP (NVT, RVT);
557 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unsupported XINT_TO_FP!")
    [all...]
LegalizeDAG.cpp 116 SDValue ExpandLibCall(RTLIB::Libcall LC, SDNode *Node, bool isSigned);
117 SDValue ExpandLibCall(RTLIB::Libcall LC, EVT RetVT, const SDValue *Ops,
120 std::pair<SDValue, SDValue> ExpandChainLibCall(RTLIB::Libcall LC,
    [all...]
LegalizeTypes.cpp     [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
VLASizeChecker.cpp 167 const LocationContext *LC = C.getLocationContext();
169 state->getRegion(VD, LC)->getExtent(svalBuilder);
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/ppc/
test2xcoff32.d 18 1a: R_TOC LC\.\.0-0x70
  /external/clang/lib/StaticAnalyzer/Core/
CoreEngine.cpp 302 const LocationContext *LC = Pred->getLocationContext();
304 LC->getDecl(),
305 LC->getCFG()->getNumBlockIDs());
339 const LocationContext *LC = Pred->getLocationContext();
342 Counter = BCounterFactory.IncrementCount(Counter, LC->getCurrentStackFrame(),
PathDiagnostic.cpp 638 PathDiagnosticLocation::createDeclBegin(const LocationContext *LC,
642 dyn_cast_or_null<CompoundStmt>(LC->getDecl()->getBody()))
652 PathDiagnosticLocation::createDeclEnd(const LocationContext *LC,
654 SourceLocation L = LC->getDecl()->getBodyRBrace();
747 const LocationContext *LC = N->getLocationContext();
758 return PathDiagnosticLocation::createEnd(S, SM, LC);
761 return PathDiagnosticLocation(S, SM, LC);
762 return PathDiagnosticLocation(getValidSourceLocation(S, LC), SM);
    [all...]
ExprEngine.cpp 185 const LocationContext *LC,
188 SVal V = State->getSVal(Ex, LC);
235 TR = MRMgr.getCXXTempObjectRegion(Inner, LC);
240 V = getSValBuilder().conjureSymbolVal(Result, LC, TR->getValueType(),
251 State = State->BindExpr(Result, LC, Reg);
319 const LocationContext *LC) {
339 ParentMap &PM = LC->getAnalysisDeclContext()->getParentMap();
345 const LocationContext *LC,
351 assert(LC && "Must pass the current (or expiring) LocationContext");
361 // LC is the location context being destroyed, but SymbolReaper wants
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Target/ARM/
ARMFastISel.cpp     [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/BugReporter/
BugReporter.h 200 void markInteresting(const LocationContext *LC);
205 bool isInteresting(const LocationContext *LC);
PathDiagnostic.h 242 static PathDiagnosticLocation createDeclBegin(const LocationContext *LC,
247 static PathDiagnosticLocation createDeclEnd(const LocationContext *LC,

Completed in 1584 milliseconds

12 3 4