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

12 3

  /external/clang/lib/StaticAnalyzer/Core/
ProgramState.cpp 122 ProgramStateRef ProgramState::bindLoc(Loc LV, SVal V, bool notifyChanges) const {
125 LV, V));
126 const MemRegion *MR = LV.getAsRegion();
191 ProgramStateRef ProgramState::killBinding(Loc LV) const {
192 assert(!LV.getAs<loc::MemRegionVal>() && "Use invalidateRegion instead.");
196 getStateManager().StoreMgr->killBinding(OldStore, LV);
ExprEngineCXX.cpp 342 if (Optional<Loc> LV = Location.getAs<Loc>())
343 State = State->bindLoc(*LV, State->getSVal(Init, LCtx));
ExprEngine.cpp 141 if (Optional<Loc> LV = V.getAs<Loc>()) {
143 state = state->assume(*LV, true);
157 if (Optional<Loc> LV = V.getAs<Loc>()) {
158 state = state->assume(*LV, true);
    [all...]
ExprEngineC.cpp 828 if (Optional<Loc> LV = V.getAs<Loc>()) {
830 Result = evalBinOp(state, BO_EQ, *LV, X, U->getType());
    [all...]
RegionStore.cpp 383 virtual StoreRef Bind(Store store, Loc LV, SVal V) {
384 return StoreRef(bind(getRegionBindings(store), LV, V).asStore(), *this);
387 RegionBindingsRef bind(RegionBindingsConstRef B, Loc LV, SVal V);
    [all...]
  /external/llvm/lib/CodeGen/
MachineBasicBlock.cpp 678 LiveVariables *LV = P->getAnalysisIfAvailable<LiveVariables>();
682 if (LV)
693 LV->getVarInfo(Reg).removeKill(MI)) {
779 if (LV) {
787 LV->getVarInfo(Reg).Kills.push_back(I);
793 LV->addNewBlock(NMBB, this, Succ);
    [all...]
  /external/clang/lib/CodeGen/
CGCall.cpp 551 CodeGenFunction::ExpandTypeFromArgs(QualType Ty, LValue LV,
553 assert(LV.isSimple() &&
560 llvm::Value *EltAddr = Builder.CreateConstGEP2_32(LV.getAddress(), 0, Elt);
561 LValue LV = MakeAddrLValue(EltAddr, EltTy);
562 AI = ExpandTypeFromArgs(EltTy, LV, AI);
585 LValue SubLV = EmitLValueForField(LV, LargestFD);
595 LValue SubLV = EmitLValueForField(LV, FD);
601 llvm::Value *RealAddr = Builder.CreateStructGEP(LV.getAddress(), 0, "real");
603 llvm::Value *ImagAddr = Builder.CreateStructGEP(LV.getAddress(), 1, "imag");
606 EmitStoreThroughLValue(RValue::get(AI), LV);
    [all...]
CGClass.cpp 434 LValue LV = LHS;
449 LV.setAddress(Dest);
451 LV.setAlignment(std::min(Align, LV.getAlignment()));
456 CGF.EmitScalarInit(Init, /*decl*/ 0, LV, false);
459 CGF.EmitComplexExprIntoLValue(Init, LV, /*isInit*/ true);
463 AggValueSlot::forLValue(LV,
476 CGF.MaybeEmitStdInitializerListCleanup(LV.getAddress(), Init);
    [all...]
CGObjC.cpp 117 LValue LV = LValue::MakeAddr(Builder.CreateStructGEP(Objects, i),
121 EmitScalarInit(Rhs, /*D=*/0, LV, /*capturedByInit=*/false);
817 LValue LV = EmitLValueForIvar(TypeOfSelfObject(), LoadObjCSelf(), ivar, 0);
827 llvm::Value *ivarAddr = LV.getAddress();
2334 LValue lv = CGF.EmitLValue(e); local
2340 CGF.EmitStoreOfScalar(getNullForVariable(lv.getAddress()), lv); local
    [all...]
CodeGenModule.cpp 281 LinkageInfo LV = D->getLinkageAndVisibility();
282 if (LV.isVisibilityExplicit() || !GV->hasAvailableExternallyLinkage())
283 GV->setVisibility(GetLLVMVisibility(LV.getVisibility()));
702 LinkageInfo LV = FD->getLinkageAndVisibility();
703 if (LV.getLinkage() == ExternalLinkage && LV.isVisibilityExplicit()) {
704 F->setVisibility(GetLLVMVisibility(LV.getVisibility()));
    [all...]
CGExprCXX.cpp 384 LValue LV = EmitLValue(E->getArg(0));
385 llvm::Value *This = LV.getAddress();
    [all...]
CodeGenFunction.h     [all...]
CGBuiltin.cpp     [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
BasicObjCFoundationChecks.cpp 320 Optional<loc::MemRegionVal> LV = TheValueExpr.getAs<loc::MemRegionVal>();
321 if (!LV)
324 const TypedValueRegion* R = dyn_cast<TypedValueRegion>(LV->stripCasts());
CallAndMessageChecker.cpp 137 if (Optional<nonloc::LazyCompoundVal> LV =
179 const LazyCompoundValData *D = LV->getCVData();
CStringChecker.cpp     [all...]
  /external/llvm/lib/Target/R600/
AMDGPUInstrInfo.cpp 82 LiveVariables *LV) const {
  /external/clang/lib/AST/
Type.cpp     [all...]
Stmt.cpp 823 Decl *LV = cast<DeclStmt>(getLoopVarStmt())->getSingleDecl();
824 assert(LV && "No loop variable in CXXForRangeStmt");
825 return cast<VarDecl>(LV);
    [all...]
  /external/llvm/include/llvm/Target/
TargetInstrInfo.h 207 MachineBasicBlock::iterator &MBBI, LiveVariables *LV) const {
    [all...]
  /external/llvm/lib/Target/ARM/
ARMBaseInstrInfo.h 47 LiveVariables *LV) const;
  /external/llvm/lib/Target/X86/
X86InstrInfo.cpp     [all...]
  /external/clang/include/clang/AST/
APValue.h 79 struct LV;
  /external/llvm/lib/Analysis/
LazyValueInfo.cpp 351 OverDefinedCacheUpdater(Value *V, BasicBlock *B, LVILatticeVal &LV,
353 : Parent(P), Val(V), BB(B), BBLV(LV) { }
    [all...]
  /external/llvm/lib/Transforms/IPO/
GlobalOpt.cpp     [all...]

Completed in 2064 milliseconds

12 3