Searched refs:LV (Results 1 - 25 of 66) sorted by relevance

123

/external/icu/icu4c/source/data/brkitr/
H A Dchar.txt30 $LV = [\p{Grapheme_Cluster_Break = LV}];
41 $L ($L | $V | $LV | $LVT);
42 ($LV | $V) ($V | $T);
57 ($L | $V | $LV | $LVT) $L;
58 ($V | $T) ($LV | $V);
/external/clang/lib/Analysis/
H A DLiveVariables.cpp196 LiveVariablesImpl &LV; member in class:__anon17780::TransferFunctions
205 : LV(im), val(Val), observer(Observer), currentBlock(CurrentBlock) {}
261 val.liveStmts = LV.SSetFact.remove(val.liveStmts, S);
278 AddLiveStmt(val.liveStmts, LV.SSetFact, ImplicitObj);
286 val.liveDecls = LV.DSetFact.add(val.liveDecls,
287 LV.analysisContext.getSelfDecl());
295 AddLiveStmt(val.liveStmts, LV.SSetFact, VA->getSizeExpr());
308 val.liveStmts = LV.SSetFact.add(val.liveStmts, child);
330 AddLiveStmt(val.liveStmts, LV.SSetFact, child);
336 if (!LV
[all...]
/external/clang/lib/CodeGen/
H A DCGExpr.cpp168 LValue LV = MakeAddrLValue(Location, E->getType()); local
169 EmitStoreThroughLValue(RV, LV);
383 LValue LV = MakeAddrLValue(Object, E->getType()); local
384 LV = EmitLValueForField(LV, Adjustment.Field);
385 assert(LV.isSimple() &&
387 Object = LV.getAddress();
406 LValue LV = EmitLValue(E); local
407 assert(LV.isSimple());
408 llvm::Value *Value = LV
675 EmitComplexPrePostIncDec(const UnaryOperator *E, LValue LV, bool isInc, bool isPre) argument
752 LValue LV; local
1252 EmitLoadOfLValue(LValue LV, SourceLocation Loc) argument
1293 EmitLoadOfBitfieldLValue(LValue LV) argument
1326 EmitLoadOfExtVectorElementLValue(LValue LV) argument
1357 EmitLoadOfGlobalRegLValue(LValue LV) argument
1641 setObjCGCLValueClass(const ASTContext &Ctx, const Expr *E, LValue &LV, bool IsMemberAccess=false) argument
1758 LValue LV; local
1793 LValue LV = CGF.MakeNaturalAlignAddrLValue(ThisValue, TagType); local
1891 LValue LV; local
1915 setObjCGCLValueClass(getContext(), E, LV); local
1937 LValue LV = MakeNaturalAlignAddrLValue(EmitScalarExpr(E->getSubExpr()), T); local
1952 LValue LV = EmitLValue(E->getSubExpr()); local
1974 LValue LV = EmitLValue(E->getSubExpr()); local
2396 LValue LV; local
2410 setObjCGCLValueClass(getContext(), E, LV); local
2494 LValue LV = EmitLValueForField(BaseLV, Field); local
2495 setObjCGCLValueClass(getContext(), E, LV); local
2606 LValue LV = MakeAddrLValue(addr, type, alignment); local
2838 LValue LV = EmitLValue(E->getSubExpr()); local
2858 LValue LV = EmitLValue(E->getSubExpr()); local
2875 LValue LV = EmitLValue(E->getSubExpr()); local
2895 LValue LV = EmitLValue(E->getSubExpr()); local
2901 LValue LV = EmitLValue(E->getSubExpr()); local
2919 EmitRValueForField(LValue LV, const FieldDecl *FD, SourceLocation Loc) argument
3067 LValue LV = EmitCheckedLValue(E->getLHS(), TCK_Store); local
3187 LValue LV = local
3190 setObjCGCLValueClass(getContext(), E, LV); local
3353 LValue LV; member in struct:__anon17830::LValueOrRValue
3384 LValue LV = CGF.MakeAddrLValue(slot.getAddr(), ov->getType()); local
[all...]
H A DCGExprAgg.cpp180 LValue LV = CGF.EmitPseudoObjectLValue(E); local
181 return EmitFinalDestCopy(E->getType(), LV);
207 LValue LV = CGF.EmitLValue(E); local
210 if (LV.getType()->isAtomicType()) {
211 CGF.EmitAtomicLoad(LV, E->getExprLoc(), Dest);
215 EmitFinalDestCopy(E->getType(), LV);
568 LValue LV = CGF.EmitCheckedLValue(E->getSubExpr(), local
571 if (LV.isSimple())
572 CGF.EmitDynamicCast(LV.getAddress(), cast<CXXDynamicCastExpr>(E));
772 LValue LV local
1037 EmitInitializationToLValue(Expr *E, LValue LV) argument
1066 CGF.EmitStoreThroughLValue(RValue::get(CGF.EmitScalarExpr(E)), LV); local
1207 LValue LV = CGF.EmitLValueForFieldInitialization(DestLV, field); local
1381 LValue LV = MakeAddrLValue(Temp, E->getType()); local
[all...]
H A DCGValue.h439 static AggValueSlot forLValue(const LValue &LV, argument
444 return forAddr(LV.getAddress(), LV.getAlignment(),
445 LV.getQuals(), isDestructed, needsGC, isAliased, isZeroed);
H A DCGExprComplex.cpp76 ComplexPairTy EmitLoadOfLValue(LValue LV, SourceLocation Loc);
80 void EmitStoreOfComplex(ComplexPairTy Val, LValue LV, bool isInit);
160 LValue LV = CGF.EmitLValue(E->getSubExpr()); local
161 return CGF.EmitComplexPrePostIncDec(E, LV, isInc, isPre);
691 LValue LV = EmitCompoundAssignLValue(E, Func, Val); local
698 if (!LV.isVolatileQualified())
701 return EmitLoadOfLValue(LV, E->getExprLoc());
726 LValue LV = EmitBinAssignLValue(E, Val); local
733 if (!LV.isVolatileQualified())
736 return EmitLoadOfLValue(LV,
[all...]
H A DCGExprScalar.cpp90 Value *EmitLoadOfLValue(LValue LV, SourceLocation Loc) { argument
91 return CGF.EmitLoadOfLValue(LV, Loc).getScalarVal();
255 LValue LV = CGF.EmitObjCIsaExpr(E); local
256 Value *V = CGF.EmitLoadOfLValue(LV, E->getExprLoc()).getScalarVal();
292 LValue LV = EmitLValue(E->getSubExpr()); local
293 return EmitScalarPrePostIncDec(E, LV, false, false);
296 LValue LV = EmitLValue(E->getSubExpr()); local
297 return EmitScalarPrePostIncDec(E, LV, true, false);
300 LValue LV = EmitLValue(E->getSubExpr()); local
301 return EmitScalarPrePostIncDec(E, LV, fals
304 LValue LV = EmitLValue(E->getSubExpr()); local
1544 EmitScalarPrePostIncDec(const UnaryOperator *E, LValue LV, bool isInc, bool isPre) argument
1750 CGF.EmitStoreThroughBitfieldLValue(RValue::get(value), LV, &value); local
1752 CGF.EmitStoreThroughLValue(RValue::get(value), LV); local
3317 EmitScalarPrePostIncDec(const UnaryOperator *E, LValue LV, bool isInc, bool isPre) argument
[all...]
H A DCGObjCRuntime.cpp100 LValue LV = CGF.MakeNaturalAlignAddrLValue(V, IvarTy); local
101 LV.getQuals().addCVRQualifiers(CVRQualifiers);
102 return LV;
/external/clang/lib/StaticAnalyzer/Checkers/
H A DPointerArithChecker.cpp41 SVal LV = state->getSVal(B->getLHS(), LCtx); local
44 const MemRegion *LR = LV.getAsRegion();
H A DPointerSubChecker.cpp44 SVal LV = state->getSVal(B->getLHS(), LCtx); local
47 const MemRegion *LR = LV.getAsRegion();
/external/clang/lib/AST/
H A DAPValue.cpp35 struct APValue::LV : LVBase { struct in class:APValue
47 LV() { PathLength = (unsigned)-1; } function in struct:APValue::LV
48 ~LV() { resizePath(0); }
201 ((LV*)(char*)Data.buffer)->~LV();
242 return reinterpret_cast<const LV *>(Data.buffer)->hasPathPtr();
555 return ((const LV*)(const void*)Data.buffer)->BaseAndIsOnePastTheEnd.getPointer();
560 return ((const LV*)(const void*)Data.buffer)->BaseAndIsOnePastTheEnd.getInt();
565 return ((LV*)(void*)Data.buffer)->Offset;
570 return ((const LV*)(cons
[all...]
H A DDecl.cpp94 /// Kinds of LV computation. The linkage side of the computation is
98 /// Do an LV computation for, ultimately, a type.
103 /// Do an LV computation for, ultimately, a non-type declaration.
108 /// Do an LV computation for, ultimately, a type that already has
113 /// Do an LV computation for, ultimately, a non-type declaration
118 /// Do an LV computation when we only care about the linkage.
232 LinkageInfo LV; local
248 LV.merge(getLVForType(*NTTP->getType(), computation));
257 LV.merge(type->getLinkageAndVisibility());
268 LV
306 LinkageInfo LV; local
373 mergeTemplateLV(LinkageInfo &LV, const FunctionDecl *fn, const FunctionTemplateSpecializationInfo *specInfo, LVComputationKind computation) argument
450 mergeTemplateLV(LinkageInfo &LV, const ClassTemplateSpecializationDecl *spec, LVComputationKind computation) argument
502 mergeTemplateLV(LinkageInfo &LV, const VarTemplateSpecializationDecl *spec, LVComputationKind computation) argument
635 LinkageInfo LV; local
[all...]
/external/llvm/lib/CodeGen/
H A DPHIElimination.cpp52 LiveVariables *LV; member in class:__anon25782::PHIElimination
129 LV = getAnalysisIfAvailable<LiveVariables>();
139 if (!DisableEdgeSplitting && (LV || LIS)) {
269 if (LV) {
273 LiveVariables::VarInfo &VI = LV->getVarInfo(IncomingReg);
276 LV->setPHIJoin(IncomingReg);
284 LV->removeVirtualRegisterKilled(IncomingReg, OldKill);
292 LV->addVirtualRegisterKilled(IncomingReg, PHICopy);
298 LV->removeVirtualRegistersKilled(MPhi);
300 // If the result is dead, update LV
[all...]
H A DTwoAddressInstructionPass.cpp76 LiveVariables *LV; member in class:__anon25830::TwoAddressInstructionPass
291 // Update kill and LV information.
296 if (LV)
297 LV->replaceKillInstruction(SavedReg, KillMI, MI);
626 MachineInstr *NewMI = TII->convertToThreeAddress(MFI, mi, LV);
748 // Bail immediately if we don't have LV or LIS available. We use them to find
750 if (!LV && !LIS)
773 KillMI = LV->getVarInfo(Reg).findKill(MBB);
904 LV->removeVirtualRegisterKilled(Reg, KillMI);
905 LV
[all...]
/external/llvm/lib/Analysis/
H A DSparsePropagation.cpp57 LatticeVal LV;
61 LV = LatticeFunc->ComputeConstant(C);
63 LV = LatticeFunc->ComputeArgument(A);
66 LV = LatticeFunc->getOverdefinedVal();
69 LV = LatticeFunc->getUndefVal();
72 if (LV == LatticeFunc->getUntrackedVal())
73 return LV;
74 return ValueState[V] = LV;
/external/clang/lib/StaticAnalyzer/Core/
H A DSimpleConstraintManager.cpp72 if (Optional<Loc> LV = Cond.getAs<Loc>()) {
75 const MemRegion *MR = LV->getAsRegion();
81 Cond = SVB.evalCast(*LV, SVB.getContext().BoolTy, T).castAs<DefinedSVal>();
H A DSValBuilder.cpp342 if (Optional<Loc> LV = lhs.getAs<Loc>()) {
344 return evalBinOpLL(state, op, *LV, *RV, type);
346 return evalBinOpLN(state, op, *LV, rhs.castAs<NonLoc>(), type);
440 if (Optional<nonloc::LocAsInteger> LV = val.getAs<nonloc::LocAsInteger>()) {
441 if (const MemRegion *R = LV->getLoc().getAsRegion()) {
446 return LV->getLoc();
H A DSVals.cpp179 if (Optional<loc::ConcreteInt> LV = getAs<loc::ConcreteInt>())
180 return LV->getValue() == I;
/external/llvm/lib/Transforms/Scalar/
H A DSCCP.cpp373 LatticeVal &LV = I.first->second; local
376 return LV; // Common case, already in the map.
381 LV.markConstant(C); // Constants are constant
385 return LV;
399 LatticeVal &LV = I.first->second; local
402 return LV; // Common case, already in the map.
408 LV.markOverdefined(); // Unknown sort of constant.
412 LV.markConstant(Elt); // Constants are constant.
416 return LV;
1268 LatticeVal &LV local
1275 LatticeVal &LV = getValueState(I); local
[all...]
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DProgramState.h217 ProgramStateRef killBinding(Loc LV) const;
281 SVal getSVal(Loc LV, QualType T = QualType()) const;
283 /// Returns the "raw" SVal bound to LV before any value simplfication.
284 SVal getRawSVal(Loc LV, QualType T= QualType()) const;
652 inline ProgramStateRef ProgramState::bindLoc(SVal LV, SVal V) const { argument
653 if (Optional<Loc> L = LV.getAs<Loc>())
711 inline SVal ProgramState::getRawSVal(Loc LV, QualType T) const { argument
712 return getStateManager().StoreMgr->getBinding(getStore(), LV, T);
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
H A DAMDGPUInstrInfo.cpp81 LiveVariables *LV) const {
H A DAMDGPUInstrInfo.h70 LiveVariables *LV) const;
/external/llvm/include/llvm/Analysis/
H A DSparsePropagation.h84 virtual Constant *GetConstant(LatticeVal LV, Value *Val, SparseSolver &SS) { argument
/external/llvm/lib/Target/R600/
H A DAMDGPUInstrInfo.h74 LiveVariables *LV) const override;
/external/mesa3d/src/gallium/drivers/radeon/
H A DAMDGPUInstrInfo.cpp81 LiveVariables *LV) const {

Completed in 1484 milliseconds

123