HomeSort by: relevance | last modified time | path
    Searched defs:LV (Results 1 - 25 of 45) sorted by relevancy

1 2

  /src/sys/arch/m68k/fpsp/
l_fpsp.h 118 LV equ -LOCAL_SIZE ;convenient base value
120 USER_DA equ LV+0 ;save space for D0-D1,A0-A1
121 USER_D0 equ LV+0 ;saved user D0
122 USER_D1 equ LV+4 ;saved user D1
123 USER_A0 equ LV+8 ;saved user A0
124 USER_A1 equ LV+12 ;saved user A1
125 USER_FP0 equ LV+16 ;saved user FP0
126 USER_FP1 equ LV+28 ;saved user FP1
127 USER_FP2 equ LV+40 ;saved user FP2
128 USER_FP3 equ LV+52 ;saved user FP
    [all...]
fpsp.h 106 LV equ -LOCAL_SIZE ;convenient base value
108 USER_DA equ LV+0 ;save space for D0-D1,A0-A1
109 USER_D0 equ LV+0 ;saved user D0
110 USER_D1 equ LV+4 ;saved user D1
111 USER_A0 equ LV+8 ;saved user A0
112 USER_A1 equ LV+12 ;saved user A1
113 USER_FP0 equ LV+16 ;saved user FP0
114 USER_FP1 equ LV+28 ;saved user FP1
115 USER_FP2 equ LV+40 ;saved user FP2
116 USER_FP3 equ LV+52 ;saved user FP
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/AST/
StmtCXX.cpp 77 Decl *LV = cast<DeclStmt>(getLoopVarStmt())->getSingleDecl();
78 assert(LV && "No loop variable in CXXForRangeStmt");
79 return cast<VarDecl>(LV);
APValue.cpp 47 APValue::LValueBase APValue::LValueBase::getDynamicAlloc(DynamicAllocLValue LV,
50 Base.Ptr = LV;
55 APValue::LValueBase APValue::LValueBase::getTypeInfo(TypeInfoLValue LV,
58 Base.Ptr = LV;
221 struct APValue::LV : LVBase {
233 LV() { PathLength = (unsigned)-1; }
234 ~LV() { resizePath(0); }
415 ((LV *)(char *)&Data)->~LV();
459 return reinterpret_cast<const LV *>(&Data)->hasPathPtr()
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
RDFDeadCode.h 36 : Trace(false), DFG(dfg), MRI(mri), LV(mri, dfg) {}
54 Liveness LV;
HexagonOptAddrMode.cpp 88 Liveness *LV = nullptr;
182 NodeAddr<RefNode*> AA = LV->getNearestAliasedRef(OffsetRR, IA);
218 const auto &P = LV->getAllReachingDefsRec(UR, UN, Visited, Defs);
251 auto UseSet = LV->getAllReachedUses(DR, DA);
264 const Liveness::RefMap &phiUse = LV->getRealUses(id);
306 NodeAddr<RefNode*> AA = LV->getNearestAliasedRef(LRExtRR, IA);
800 LV = &L;
  /src/external/bsd/pcc/dist/pcc/cc/ccom/
optim.c 49 # define LV(p) getlval(p->n_left)
250 if (LV(p) == 0) {
428 if (LV(p) == 0) {
458 if (LV(p) == 0) { /* right not evaluated */
471 if (LV(p) != 0) { /* right not evaluated */
  /src/external/bsd/pcc/dist/pcc/cc/cxxcom/
optim.c 45 # define LV(p) glval(p->n_left)
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
LoopNestAnalysis.cpp 162 SmallVector<LoopVectorTy, 4> LV;
173 LV.push_back(PerfectNest);
178 return LV;
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.cp/
ambiguous.cc 42 class LV : public virtual A1 {
72 class JV : public KV, public LV {
77 class JVA1 : public KV, public LV, public A1 {
82 class JVA2 : public KV, public LV, public A2 {
87 class JVA1V : public KV, public LV, public virtual A1 {
171 jva1.LV::x = 3;
172 jva1.LV::y = 4;
179 jva2.LV::x = 3;
180 jva2.LV::y = 4;
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.cp/
ambiguous.cc 42 class LV : public virtual A1 {
72 class JV : public KV, public LV {
77 class JVA1 : public KV, public LV, public A1 {
82 class JVA2 : public KV, public LV, public A2 {
87 class JVA1V : public KV, public LV, public virtual A1 {
171 jva1.LV::x = 3;
172 jva1.LV::y = 4;
179 jva2.LV::x = 3;
180 jva2.LV::y = 4;
  /src/external/apache2/llvm/dist/clang/lib/Analysis/
LiveVariables.cpp 153 LiveVariablesImpl &LV;
162 : LV(im), val(Val), observer(Observer), currentBlock(CurrentBlock) {}
218 val.liveExprs = LV.ESetFact.remove(val.liveExprs, E);
235 AddLiveExpr(val.liveExprs, LV.ESetFact, ImplicitObj);
243 val.liveDecls = LV.DSetFact.add(val.liveDecls,
244 LV.analysisContext.getSelfDecl());
252 AddLiveExpr(val.liveExprs, LV.ESetFact, VA->getSizeExpr());
265 val.liveExprs = LV.ESetFact.add(val.liveExprs, child);
286 AddLiveExpr(val.liveExprs, LV.ESetFact, cast<IfStmt>(S)->getCond());
293 AddLiveExpr(val.liveExprs, LV.ESetFact, cast<WhileStmt>(S)->getCond())
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGObjCRuntime.cpp 71 LValue LV = CGF.MakeNaturalAlignAddrLValue(V, IvarTy);
72 return LV;
CGBuiltin.cpp 175 LValue LV = CGF.MakeNaturalAlignAddrLValue(BC, E->getArg(0)->getType());
176 LV.setNontemporal(true);
177 CGF.EmitStoreOfScalar(Val, LV, false);
184 LValue LV = CGF.MakeNaturalAlignAddrLValue(Address, E->getType());
185 LV.setNontemporal(true);
186 return CGF.EmitLoadOfScalar(LV, E->getExprLoc());
17690 llvm::Value *LV = Builder.CreateBitCast(
17694 Builder.CreateAlignedStore(NewBase, LV, Dest.getAlignment());
CGCall.h 223 LValue LV; /// The argument is semantically a load from this l-value.
235 CallArg(LValue lv, QualType ty)
236 : LV(lv), HasLV(true), IsUsed(false), Ty(ty) {}
246 return LV;
290 void addUncopiedAggregate(LValue LV, QualType type) {
291 push_back(CallArg(LV, type));
CGCoroutine.cpp 171 LValue LV;
249 Res.LV = CGF.EmitLValue(S.getResumeExpr());
307 /*ignoreResult*/false, /*forLValue*/true).LV;
317 /*ignoreResult*/false, /*forLValue*/true).LV;
CGVTables.cpp 1197 LinkageInfo LV = RD->getLinkageAndVisibility();
1198 if (!isExternallyVisible(LV.getLinkage()))
1208 if (LV.getVisibility() != HiddenVisibility)
1225 LinkageInfo LV = RD->getLinkageAndVisibility();
1227 if (!isExternallyVisible(LV.getLinkage()))
  /src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
SparsePropagation.h 94 virtual void PrintLatticeVal(LatticeVal LV, raw_ostream &OS);
103 virtual Value *GetValueFromLatticeVal(LatticeVal LV, Type *Ty = nullptr) {
183 void UpdateState(LatticeKey Key, LatticeVal LV);
235 LatticeVal LV = LatticeFunc->ComputeLatticeVal(Key);
238 if (LV == LatticeFunc->getUntrackedVal())
239 return LV;
240 return ValueState[Key] = std::move(LV);
245 LatticeVal LV) {
247 if (I != ValueState.end() && I->second == LV)
252 ValueState[Key] = std::move(LV);
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
CalledValuePropagation.cpp 190 void PrintLatticeVal(CVPLatticeVal LV, raw_ostream &OS) override {
191 if (LV == getUndefVal())
193 else if (LV == getOverdefinedVal())
195 else if (LV == getUntrackedVal())
389 CVPLatticeVal LV = Solver.getExistingValueState(RegI);
390 if (!LV.isFunctionSet() || LV.getFunctions().empty())
392 MDNode *Callees = MDB.createCallees(LV.getFunctions());
  /src/external/apache2/llvm/dist/llvm/tools/llvm-objdump/
SourcePrinter.cpp 125 for (const LiveVariable &LV : LiveVariables) {
126 dbgs() << LV.VarName << " @ " << LV.LocExpr.Range << ": ";
127 LV.print(dbgs(), MRI);
155 LiveVariable &LV = LiveVariables[ActiveCols[ColIdx].VarIdx];
156 ActiveCols[ColIdx].LiveIn = LV.liveAtAddress(ThisAddr);
157 ActiveCols[ColIdx].LiveOut = LV.liveAtAddress(NextAddr);
159 << NextAddr.Address << ", " << LV.VarName << ", Col "
174 LiveVariable &LV = LiveVariables[VarIdx];
175 bool LiveIn = LV.liveAtAddress(ThisAddr)
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
PHIElimination.cpp 69 LiveVariables *LV;
150 LV = getAnalysisIfAvailable<LiveVariables>();
156 if (!DisableEdgeSplitting && (LV || LIS)) {
157 // A set of live-in regs for each MBB which is used to update LV
160 if (LV) {
169 LiveVariables::VarInfo &VI = LV->getVarInfo(VirtReg);
188 Changed |= SplitPHIEdges(MF, MBB, MLI, (LV ? &LiveInSets : nullptr));
320 if (LV) {
322 LiveVariables::VarInfo &VI = LV->getVarInfo(IncomingReg);
325 LV->setPHIJoin(IncomingReg)
    [all...]
RDFLiveness.cpp 868 std::vector<RegisterRef> LV;
870 LV.push_back(RegisterRef(LI.PhysReg, LI.LaneMask));
871 llvm::sort(LV);
873 for (auto I : LV)
878 LV.clear();
881 LV.push_back(*I);
882 llvm::sort(LV);
884 for (auto I : LV)
913 auto CopyLiveIns = [this] (MachineBasicBlock *B, BitVector &LV) -> void {
917 LV.set(I.PhysReg)
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
FunctionComparator.cpp 336 const ConstantVector *LV = cast<ConstantVector>(L);
343 if (int Res = cmpConstants(cast<Constant>(LV->getOperand(i)),
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
BasicObjCFoundationChecks.cpp 468 Optional<loc::MemRegionVal> LV = TheValueExpr.getAs<loc::MemRegionVal>();
469 if (!LV)
472 const TypedValueRegion* R = dyn_cast<TypedValueRegion>(LV->stripCasts());
NullabilityChecker.cpp 336 SVal LV, QualType T) {
340 auto RegionVal = LV.getAs<loc::MemRegionVal>();
368 SVal LV = State->getLValue(ParamDecl, LocCtxt);
369 if (checkValueAtLValForInvariantViolation(State, LV,
400 SVal LV = State->getLValue(IvarDecl, SelfVal);
401 if (checkValueAtLValForInvariantViolation(State, LV, IvarDecl->getType())) {

Completed in 99 milliseconds

1 2