HomeSort by relevance Sort by last modified time
    Searched refs:LV (Results 1 - 25 of 70) sorted by null

1 2 3

  /external/icu4c/data/brkitr/
char.txt 30 $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/
LiveVariables.cpp 211 LiveVariablesImpl &LV;
220 : LV(im), val(Val), observer(Observer), currentBlock(CurrentBlock) {}
276 val.liveStmts = LV.SSetFact.remove(val.liveStmts, S);
293 AddLiveStmt(val.liveStmts, LV.SSetFact, ImplicitObj);
301 val.liveDecls = LV.DSetFact.add(val.liveDecls,
302 LV.analysisContext.getSelfDecl());
310 AddLiveStmt(val.liveStmts, LV.SSetFact, VA->getSizeExpr());
323 val.liveStmts = LV.SSetFact.add(val.liveStmts, child);
345 AddLiveStmt(val.liveStmts, LV.SSetFact, child);
351 if (!LV.killAtAssign
    [all...]
  /external/clang/lib/CodeGen/
CGExpr.cpp 166 LValue LV = MakeAddrLValue(Location, E->getType());
167 EmitStoreThroughLValue(RV, LV);
380 LValue LV = MakeAddrLValue(Object, E->getType());
381 LV = EmitLValueForField(LV, Adjustment.Field);
382 assert(LV.isSimple() &&
384 Object = LV.getAddress();
403 LValue LV = EmitLValue(E);
404 assert(LV.isSimple());
405 llvm::Value *Value = LV.getAddress()
    [all...]
CGExprAgg.cpp 180 LValue LV = CGF.EmitPseudoObjectLValue(E);
181 return EmitFinalDestCopy(E->getType(), LV);
207 LValue LV = CGF.EmitLValue(E);
210 if (LV.getType()->isAtomicType()) {
211 CGF.EmitAtomicLoad(LV, Dest);
215 EmitFinalDestCopy(E->getType(), LV);
551 LValue LV = CGF.EmitCheckedLValue(E->getSubExpr(),
554 if (LV.isSimple())
555 CGF.EmitDynamicCast(LV.getAddress(), cast<CXXDynamicCastExpr>(E));
754 LValue LV = CGF.EmitPointerToDataMemberBinaryExpr(E)
1063 CGF.EmitStoreThroughBitfieldLValue(RValue::get(null), lv); local
    [all...]
CGValue.h 424 static AggValueSlot forLValue(const LValue &LV,
429 return forAddr(LV.getAddress(), LV.getAlignment(),
430 LV.getQuals(), isDestructed, needsGC, isAliased, isZeroed);
CGExprComplex.cpp 76 ComplexPairTy EmitLoadOfLValue(LValue LV);
80 void EmitStoreOfComplex(ComplexPairTy Val, LValue LV, bool isInit);
159 LValue LV = CGF.EmitLValue(E->getSubExpr());
160 return CGF.EmitComplexPrePostIncDec(E, LV, isInc, isPre);
686 LValue LV = EmitCompoundAssignLValue(E, Func, Val);
693 if (!LV.isVolatileQualified())
696 return EmitLoadOfLValue(LV);
721 LValue LV = EmitBinAssignLValue(E, Val);
728 if (!LV.isVolatileQualified())
731 return EmitLoadOfLValue(LV);
    [all...]
CGObjCRuntime.cpp 99 LValue LV = CGF.MakeNaturalAlignAddrLValue(V, IvarTy);
100 LV.getQuals().addCVRQualifiers(CVRQualifiers);
101 return LV;
CGExprScalar.cpp 90 Value *EmitLoadOfLValue(LValue LV) {
91 return CGF.EmitLoadOfLValue(LV).getScalarVal();
253 LValue LV = CGF.EmitObjCIsaExpr(E);
254 Value *V = CGF.EmitLoadOfLValue(LV).getScalarVal();
289 LValue LV = EmitLValue(E->getSubExpr());
290 return EmitScalarPrePostIncDec(E, LV, false, false);
293 LValue LV = EmitLValue(E->getSubExpr());
294 return EmitScalarPrePostIncDec(E, LV, true, false);
297 LValue LV = EmitLValue(E->getSubExpr());
298 return EmitScalarPrePostIncDec(E, LV, false, true)
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
PointerArithChecker.cpp 41 SVal LV = state->getSVal(B->getLHS(), LCtx);
44 const MemRegion *LR = LV.getAsRegion();
PointerSubChecker.cpp 44 SVal LV = state->getSVal(B->getLHS(), LCtx);
47 const MemRegion *LR = LV.getAsRegion();
  /external/clang/lib/AST/
APValue.cpp 35 struct APValue::LV : LVBase {
47 LV() { PathLength = (unsigned)-1; }
48 ~LV() { resizePath(0); }
201 ((LV*)(char*)Data)->~LV();
242 return reinterpret_cast<const LV *>(Data)->hasPathPtr();
549 return ((const LV*)(const void*)Data)->BaseAndIsOnePastTheEnd.getPointer();
554 return ((const LV*)(const void*)Data)->BaseAndIsOnePastTheEnd.getInt();
559 return ((LV*)(void*)Data)->Offset;
564 return ((const LV*)(const char*)Data)->hasPath()
    [all...]
Decl.cpp 90 /// Kinds of LV computation. The linkage side of the computation is
94 /// Do an LV computation for, ultimately, a type.
99 /// Do an LV computation for, ultimately, a non-type declaration.
104 /// Do an LV computation for, ultimately, a type that already has
109 /// Do an LV computation for, ultimately, a non-type declaration
114 /// Do an LV computation when we only care about the linkage.
232 LinkageInfo LV;
250 LV.merge(getLVForType(*NTTP->getType(), computation));
259 LV.merge(type->getLinkageAndVisibility());
270 LV.merge(getLVForTemplateParameterList(TTP->getTemplateParameters()
    [all...]
  /external/llvm/lib/CodeGen/
PHIElimination.cpp 51 LiveVariables *LV;
128 LV = getAnalysisIfAvailable<LiveVariables>();
138 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...]
TwoAddressInstructionPass.cpp 75 LiveVariables *LV;
290 // Update kill and LV information.
295 if (LV)
296 LV->replaceKillInstruction(SavedReg, KillMI, MI);
627 MachineInstr *NewMI = TII->convertToThreeAddress(MFI, mi, LV);
749 // Bail immediately if we don't have LV or LIS available. We use them to find
751 if (!LV && !LIS)
774 KillMI = LV->getVarInfo(Reg).findKill(MBB);
    [all...]
  /external/llvm/lib/Analysis/
SparsePropagation.cpp 56 LatticeVal LV;
60 LV = LatticeFunc->ComputeConstant(C);
62 LV = LatticeFunc->ComputeArgument(A);
65 LV = LatticeFunc->getOverdefinedVal();
68 LV = LatticeFunc->getUndefVal();
71 if (LV == LatticeFunc->getUntrackedVal())
72 return LV;
73 return ValueState[V] = LV;
  /external/harfbuzz/src/
harfbuzz-hangul.c 41 // LV or LVT.
46 // V, LV V, T
76 LV,
83 return hangul_isLV(uc) ? LV : LVT;
112 case LV:
  /external/harfbuzz_ng/src/hb-old/
harfbuzz-hangul.c 41 // LV or LVT.
46 // V, LV V, T
76 LV,
83 return hangul_isLV(uc) ? LV : LVT;
112 case LV:
  /external/clang/lib/StaticAnalyzer/Core/
SValBuilder.cpp 340 if (Optional<Loc> LV = lhs.getAs<Loc>()) {
342 return evalBinOpLL(state, op, *LV, *RV, type);
344 return evalBinOpLN(state, op, *LV, rhs.castAs<NonLoc>(), type);
431 if (Optional<nonloc::LocAsInteger> LV = val.getAs<nonloc::LocAsInteger>()) {
432 if (const MemRegion *R = LV->getLoc().getAsRegion()) {
437 return LV->getLoc();
SVals.cpp 179 if (Optional<loc::ConcreteInt> LV = getAs<loc::ConcreteInt>())
180 return LV->getValue() == I;
  /external/llvm/include/llvm/Analysis/
SparsePropagation.h 84 virtual Constant *GetConstant(LatticeVal LV, Value *Val, SparseSolver &SS) {
  /external/llvm/lib/Transforms/Scalar/
SCCP.cpp 372 LatticeVal &LV = I.first->second;
375 return LV; // Common case, already in the map.
380 LV.markConstant(C); // Constants are constant
384 return LV;
398 LatticeVal &LV = I.first->second;
401 return LV; // Common case, already in the map.
407 LV.markOverdefined(); // Unknown sort of constant.
411 LV.markConstant(Elt); // Constants are constant.
415 return LV;
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
ProgramState.h 217 ProgramStateRef killBinding(Loc LV) const;
282 SVal getSVal(Loc LV, QualType T = QualType()) const;
284 /// Returns the "raw" SVal bound to LV before any value simplfication.
285 SVal getRawSVal(Loc LV, QualType T= QualType()) const;
653 inline ProgramStateRef ProgramState::bindLoc(SVal LV, SVal V) const {
654 if (Optional<Loc> L = LV.getAs<Loc>())
714 inline SVal ProgramState::getRawSVal(Loc LV, QualType T) const {
715 return getStateManager().StoreMgr->getBinding(getStore(), LV, T);
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
AMDGPUInstrInfo.cpp 81 LiveVariables *LV) const {
AMDGPUInstrInfo.h 70 LiveVariables *LV) const;
  /external/llvm/lib/Target/R600/
AMDGPUInstrInfo.cpp 82 LiveVariables *LV) const {

Completed in 1604 milliseconds

1 2 3