/freebsd/sys/geom/linux_lvm/ |
H A D | g_linux_lvm.c | 197 struct g_llvm_lv *lv; in g_llvm_start() local 207 lv = pp->private; in g_llvm_start() 246 if (lv->lv_sgcount == 1) { in g_llvm_start() 251 sg = lv->lv_firstsg; in g_llvm_start() 261 LIST_FOREACH(sg, &lv->lv_segs, sg_next) { in g_llvm_start() 288 offset, length, lv->lv_name, in g_llvm_start() 318 struct g_llvm_lv *lv; in g_llvm_remove_disk() local 328 LIST_FOREACH(lv, &vg->vg_lvs, lv_next) { in g_llvm_remove_disk() 331 LIST_FOREACH(sg, &lv->lv_segs, sg_next) { in g_llvm_remove_disk() 334 lv->lv_sgactive--; in g_llvm_remove_disk() [all …]
|
/freebsd/contrib/llvm-project/clang/lib/Analysis/ |
H A D | LiveVariables.cpp | 159 LiveVariablesImpl &LV; member in __anon9166e1760311::TransferFunctions 168 : LV(im), val(Val), observer(Observer), currentBlock(CurrentBlock) {} in TransferFunctions() 224 val.liveExprs = LV.ESetFact.remove(val.liveExprs, E); in Visit() 241 AddLiveExpr(val.liveExprs, LV.ESetFact, ImplicitObj); in Visit() 249 val.liveDecls = LV.DSetFact.add(val.liveDecls, in Visit() 250 LV.analysisContext.getSelfDecl()); in Visit() 258 AddLiveExpr(val.liveExprs, LV.ESetFact, VA->getSizeExpr()); in Visit() 271 val.liveExprs = LV.ESetFact.add(val.liveExprs, child); in Visit() 292 AddLiveExpr(val.liveExprs, LV.ESetFact, cast<IfStmt>(S)->getCond()); in Visit() 299 AddLiveExpr(val.liveExprs, LV.ESetFact, cast<WhileStmt>(S)->getCond()); in Visit() [all …]
|
/freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
H A D | CGExpr.cpp | 276 LValue LV = MakeAddrLValue(Location, E->getType()); in EmitAnyExprToMem() local 277 EmitStoreThroughLValue(RV, LV); in EmitAnyExprToMem() 605 LValue LV = MakeAddrLValue(Object, E->getType(), AlignmentSource::Decl); in EmitMaterializeTemporaryExpr() local 606 LV = EmitLValueForField(LV, Adjustment.Field); in EmitMaterializeTemporaryExpr() 607 assert(LV.isSimple() && in EmitMaterializeTemporaryExpr() 609 Object = LV.getAddress(); in EmitMaterializeTemporaryExpr() 628 LValue LV = EmitLValue(E); in EmitReferenceBindingToExpr() local 629 assert(LV.isSimple()); in EmitReferenceBindingToExpr() 630 llvm::Value *Value = LV.getPointer(*this); in EmitReferenceBindingToExpr() 1130 LValue LV = EmitLValue(StructBase); in EmitCountedByFieldExpr() local [all …]
|
H A D | CGExprAgg.cpp | 208 LValue LV = CGF.EmitPseudoObjectLValue(E); in VisitPseudoObjectExpr() local 209 return EmitFinalDestCopy(E->getType(), LV); in VisitPseudoObjectExpr() 251 LValue LV = CGF.EmitLValue(E); in EmitAggLoadOfLValue() local 254 if (LV.getType()->isAtomicType() || CGF.LValueIsSuitableForInlineAtomic(LV)) { in EmitAggLoadOfLValue() 255 CGF.EmitAtomicLoad(LV, E->getExprLoc(), Dest); in EmitAggLoadOfLValue() 259 EmitFinalDestCopy(E->getType(), LV); in EmitAggLoadOfLValue() 742 LValue LV = CGF.EmitCheckedLValue(E->getSubExpr(), in VisitCastExpr() local 745 if (LV.isSimple()) in VisitCastExpr() 746 CGF.EmitDynamicCast(LV.getAddress(), cast<CXXDynamicCastExpr>(E)); in VisitCastExpr() 1131 LValue LV = CGF.EmitPointerToDataMemberBinaryExpr(E); in VisitPointerToDataMemberBinaryOperator() local [all …]
|
H A D | CGCall.h | 233 LValue LV; /// The argument is semantically a load from this l-value. member 245 CallArg(LValue lv, QualType ty) in CallArg() 246 : LV(lv), HasLV(true), IsUsed(false), Ty(ty) {} in CallArg() 256 return LV; in getKnownLValue() 300 void addUncopiedAggregate(LValue LV, QualType type) { in addUncopiedAggregate() argument 301 push_back(CallArg(LV, type)); in addUncopiedAggregate()
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
H A D | PHIElimination.cpp | 70 LiveVariables *LV = nullptr; member in __anonf60509ee0111::PHIEliminationImpl 124 LV = LVWrapper ? &LVWrapper->getLV() : nullptr; in PHIEliminationImpl() 131 : LV(AM.getCachedResult<LiveVariablesAnalysis>(MF)), in PHIEliminationImpl() 209 if (!DisableEdgeSplitting && (LV || LIS)) { in run() 210 // A set of live-in regs for each MBB which is used to update LV in run() 213 if (LV) { in run() 222 LiveVariables::VarInfo &VI = LV->getVarInfo(VirtReg); in run() 240 Changed |= SplitPHIEdges(MF, MBB, MLI, (LV ? &LiveInSets : nullptr)); in run() 247 if (LV || LIS) in run() 405 if (LV) { in LowerPHINode() [all …]
|
H A D | TwoAddressInstructionPass.cpp | 98 LiveVariables *LV = nullptr; member in __anon97cd436d0111::TwoAddressInstructionImpl 272 LV(MFAM.getCachedResult<LiveVariablesAnalysis>(Func)), in INITIALIZE_PASS_DEPENDENCY() 287 LV = LVWrapper ? &LVWrapper->getLV() : nullptr; in TwoAddressInstructionImpl() 790 MachineInstr *NewMI = TII->convertToThreeAddress(*mi, LV, LIS); in convertInstTo3Addr() 910 // Bail immediately if we don't have LV or LIS available. We use them to find in rescheduleMIBelowKill() 912 if (!LV && !LIS) in rescheduleMIBelowKill() 935 KillMI = LV->getVarInfo(Reg).findKill(MBB); in rescheduleMIBelowKill() 1064 LV->removeVirtualRegisterKilled(Reg, *KillMI); in rescheduleMIBelowKill() 1065 LV->addVirtualRegisterKilled(Reg, *MI); in rescheduleMIBelowKill() 1098 // Bail immediately if we don't have LV or LIS available. We use them to find in rescheduleKillAboveMI() [all …]
|
/freebsd/sbin/mdconfig/tests/ |
H A D | mdconfig_test.sh | 64 -x "mdconfig -lv | awk '\$1 == \"$md\" { print \$1, \$2, \$3 }'" 88 -x "mdconfig -lv | awk '\$1 == \"$md\" { print \$1, \$2, \$3 }'" 112 -x "mdconfig -lv | awk '\$1 == \"$md\" { print \$1, \$2, \$3 }'" 138 -x "mdconfig -lv | awk '\$1 == \"$md\" { print \$1, \$2, \$3 }'" 163 -x "mdconfig -lv | awk '\$1 == \"$md\" { print \$1, \$2, \$3 }'" 188 -x "mdconfig -lv | awk '\$1 == \"$md\" { print \$1, \$2, \$3 }'" 212 -x "mdconfig -lv | awk '\$1 == \"$md\" { print \$1, \$2, \$3 }'" 236 -x "mdconfig -lv | awk '\$1 == \"$md\" { print \$1, \$2, \$3 }'" 262 -x "mdconfig -lv | awk '\$1 == \"$md\" { print \$1, \$2, \$3 }'" 302 atf_set "descr" "mdconfig -lv should print device details" [all …]
|
/freebsd/sys/contrib/device-tree/src/arm/ti/omap/ |
H A D | logicpd-som-lv-37xx-devkit.dts | 6 #include "logicpd-som-lv.dtsi" 7 #include "logicpd-som-lv-baseboard.dtsi" 11 model = "LogicPD Zoom DM3730 SOM-LV Development Kit"; 12 compatible = "logicpd,dm3730-som-lv-devkit", "ti,omap3630", "ti,omap3";
|
H A D | logicpd-som-lv-35xx-devkit.dts | 6 #include "logicpd-som-lv.dtsi" 7 #include "logicpd-som-lv-baseboard.dtsi" 11 model = "LogicPD Zoom OMAP35xx SOM-LV Development Kit"; 12 compatible = "logicpd,dm3730-som-lv-devkit", "ti,omap3430", "ti,omap3";
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
H A D | SILowerControlFlow.cpp | 76 LiveVariables *LV = nullptr; member in __anon0c226a110111::SILowerControlFlow 246 if (LV) in emitIf() 247 LV->replaceKillInstruction(Cond.getReg(), MI, *And); in emitIf() 265 if (LV) in emitIf() 266 LV->getVarInfo(Tmp).Kills.push_back(SetExec); in emitIf() 320 if (LV) in emitElse() 321 LV->replaceKillInstruction(SrcReg, MI, *OrSaveExec); in emitElse() 394 if (LV) in emitIfBreak() 395 LV->replaceKillInstruction(MI.getOperand(1).getReg(), MI, *And); in emitIfBreak() 403 if (LV) in emitIfBreak() [all …]
|
H A D | SIOptimizeVGPRLiveRange.cpp | 94 LiveVariables *LV = nullptr; member in __anon0f1b199c0111::SIOptimizeVGPRLiveRange 244 LiveVariables::VarInfo &VI = LV->getVarInfo(MOReg); in collectCandidateRegisters() 253 LiveVariables::VarInfo &VI = LV->getVarInfo(MOReg); in collectCandidateRegisters() 283 LiveVariables::VarInfo &VI = LV->getVarInfo(Reg); in collectCandidateRegisters() 376 LiveVariables::VarInfo &OldVarInfo = LV->getVarInfo(MOReg); in collectWaterfallCandidateRegisters() 417 LiveVariables::VarInfo &OldVarInfo = LV->getVarInfo(Reg); in updateLiveRangeInThenRegion() 445 LV->HandleVirtRegUse(Reg, MBB, *(*Uses.begin())); in updateLiveRangeInThenRegion() 452 LV->HandleVirtRegUse(Reg, MBB, MI); in updateLiveRangeInThenRegion() 458 LV->MarkVirtRegAliveInBlock(OldVarInfo, MRI->getVRegDef(Reg)->getParent(), in updateLiveRangeInThenRegion() 473 LiveVariables::VarInfo &NewVarInfo = LV->getVarInfo(NewReg); in updateLiveRangeInElseRegion() [all …]
|
/freebsd/contrib/llvm-project/clang/lib/AST/ |
H A D | APValue.cpp | 47 APValue::LValueBase APValue::LValueBase::getDynamicAlloc(DynamicAllocLValue LV, in getDynamicAlloc() argument 50 Base.Ptr = LV; in getDynamicAlloc() 55 APValue::LValueBase APValue::LValueBase::getTypeInfo(TypeInfoLValue LV, in getTypeInfo() argument 58 Base.Ptr = LV; in getTypeInfo() 221 struct APValue::LV : LVBase { struct in APValue 233 LV() { PathLength = (unsigned)-1; } in LV() argument 234 ~LV() { resizePath(0); } in ~LV() argument 417 ((LV *)(char *)&Data)->~LV(); in DestroyDataAndMakeUninit() 461 return reinterpret_cast<const LV *>(&Data)->hasPathPtr(); in needsCleanup() 976 return ((const LV *)(const void *)&Data)->Base; in getLValueBase() [all …]
|
H A D | Decl.cpp | 252 LinkageInfo LV; in getLVForTemplateParameterList() local 267 LV.merge(getLVForType(*NTTP->getType(), computation)); in getLVForTemplateParameterList() 276 LV.merge(getTypeLinkageAndVisibility(type)); in getLVForTemplateParameterList() 287 LV.merge(getLVForTemplateParameterList(TTP->getTemplateParameters(), in getLVForTemplateParameterList() 295 LV.merge(getLVForTemplateParameterList( in getLVForTemplateParameterList() 300 return LV; in getLVForTemplateParameterList() 322 LinkageInfo LV; in getLVForTemplateArgumentList() local 332 LV.merge(getLVForType(*Arg.getAsType(), computation)); in getLVForTemplateArgumentList() 338 LV.merge(getLVForDecl(ND, computation)); in getLVForTemplateArgumentList() 343 LV.merge(getTypeLinkageAndVisibility(Arg.getNullPtrType())); in getLVForTemplateArgumentList() [all …]
|
H A D | Linkage.h | 26 /// Kinds of LV computation. The linkage side of the computation is 60 /// Do an LV computation when we only care about the linkage. 115 void mergeTemplateLV(LinkageInfo &LV, const FunctionDecl *fn, 119 void mergeTemplateLV(LinkageInfo &LV, 123 void mergeTemplateLV(LinkageInfo &LV,
|
/freebsd/contrib/netbsd-tests/libexec/ld.elf_so/ |
H A D | t_dl_symver.sh | 43 for lv in 0 1 2; do 45 -o file:$(datadir)/symver-output-ref-stdout.v$tv-v$lv \ 46 -e file:$(datadir)/symver-output-ref-stderr.v$tv-v$lv \ 47 … -x "LD_LIBRARY_PATH=$(atf_get_srcdir)/h_helper_symver_dso$lv $(atf_get_srcdir)/h_dl_symver_v$tv"
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/ |
H A D | SparsePropagation.h | 96 virtual void PrintLatticeVal(LatticeVal LV, raw_ostream &OS); 105 virtual Value *GetValueFromLatticeVal(LatticeVal LV, Type *Ty = nullptr) { 185 void UpdateState(LatticeKey Key, LatticeVal LV); 237 LatticeVal LV = LatticeFunc->ComputeLatticeVal(Key); in getValueState() local 240 if (LV == LatticeFunc->getUntrackedVal()) in getValueState() 241 return LV; in getValueState() 242 return ValueState[Key] = std::move(LV); in getValueState() 247 LatticeVal LV) { in UpdateState() argument 249 if (I != ValueState.end() && I->second == LV) in UpdateState() 254 ValueState[Key] = std::move(LV); in UpdateState() [all …]
|
/freebsd/tools/tools/nanobsd/ |
H A D | mtree-dedup.awk | 77 lv = path " "; 80 lv = lv k " "; 82 lv = lv k "=" kvs[k] " "; 84 return lv;
|
/freebsd/contrib/llvm-project/llvm/tools/llvm-objdump/ |
H A D | SourcePrinter.cpp | 133 for (const LiveVariable &LV : LiveVariables) { in dump() local 134 dbgs() << LV.VarName << " @ " << LV.LocExpr.Range << ": "; in dump() 135 LV.print(dbgs(), MRI); in dump() 163 LiveVariable &LV = LiveVariables[ActiveCols[ColIdx].VarIdx]; in update() local 164 ActiveCols[ColIdx].LiveIn = LV.liveAtAddress(ThisAddr); in update() 165 ActiveCols[ColIdx].LiveOut = LV.liveAtAddress(NextAddr); in update() 167 << NextAddr.Address << ", " << LV.VarName << ", Col " in update() 182 LiveVariable &LV = LiveVariables[VarIdx]; in update() local 183 bool LiveIn = LV in update() [all...] |
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
H A D | SCCPSolver.cpp | 47 bool SCCPSolver::isConstant(const ValueLatticeElement &LV) { in isConstant() argument 48 return LV.isConstant() || in isConstant() 49 (LV.isConstantRange() && LV.getConstantRange().isSingleElement()); in isConstant() 52 bool SCCPSolver::isOverdefined(const ValueLatticeElement &LV) { in isOverdefined() argument 53 return !LV.isUnknownOrUndef() && !SCCPSolver::isConstant(LV); in isOverdefined() 482 ValueLatticeElement &LV = I.first->second; in getValueState() local 485 return LV; // Common case, already in the map. in getValueState() 488 LV.markConstant(C); // Constants are constant in getValueState() 491 return LV; in getValueState() 504 ValueLatticeElement &LV = I.first->second; in getStructValueState() local [all …]
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/ |
H A D | SCCPSolver.h | 163 /// Helper to return a Constant if \p LV is either a constant or a constant 165 Constant *getConstant(const ValueLatticeElement &LV, Type *Ty) const; 198 // Helper to check if \p LV is either a constant or a constant 202 static bool isConstant(const ValueLatticeElement &LV); 204 // Helper to check if \p LV is either overdefined or a constant range with 208 static bool isOverdefined(const ValueLatticeElement &LV);
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Vectorize/ |
H A D | LoopVectorizationLegality.cpp | 41 AllowStridedPointerIVs("lv-strided-pointer-ivs", cl::init(false), cl::Hidden, 155 << "LV: Interleaving disabled by the pass manager\n"); in LoopVectorizeHints() 180 LLVM_DEBUG(dbgs() << "LV: Not vectorizing: #pragma vectorize disable.\n"); in allowVectorization() 186 LLVM_DEBUG(dbgs() << "LV: Not vectorizing: No #pragma vectorize enable.\n"); in allowVectorization() 192 LLVM_DEBUG(dbgs() << "LV: Not vectorizing: Disabled/already vectorized.\n"); in allowVectorization() 308 LLVM_DEBUG(dbgs() << "LV: ignoring invalid hint '" << Name << "'\n"); in setHint() 348 LLVM_DEBUG(dbgs() << "LV: Canonical IV not found.\n"); in isUniformLoop() 356 LLVM_DEBUG(dbgs() << "LV: Unsupported loop latch branch.\n"); in isUniformLoop() 364 dbgs() << "LV: Loop latch condition is not a compare instruction.\n"); in isUniformLoop() 373 LLVM_DEBUG(dbgs() << "LV: Loop latch condition is not uniform.\n"); in isUniformLoop() [all …]
|
/freebsd/contrib/dialog/po/ |
H A D | lv.po | 6 # Rihards Prieditis <RPrieditis@inbox.lv>, 2009. 15 "Language-Team: Latvian <translation-team-lv@lists.sourceforge.net>\n" 16 "Language: lv\n"
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/ |
H A D | CalledValuePropagation.cpp | 192 void PrintLatticeVal(CVPLatticeVal LV, raw_ostream &OS) override { in PrintLatticeVal() argument 193 if (LV == getUndefVal()) in PrintLatticeVal() 195 else if (LV == getOverdefinedVal()) in PrintLatticeVal() 197 else if (LV == getUntrackedVal()) in PrintLatticeVal() 391 CVPLatticeVal LV = Solver.getExistingValueState(RegI); in runCVP() local 392 if (!LV.isFunctionSet() || LV.getFunctions().empty()) in runCVP() 394 MDNode *Callees = MDB.createCallees(LV.getFunctions()); in runCVP()
|
/freebsd/cddl/contrib/opensolaris/lib/libdtrace/common/ |
H A D | dt_pq.c | 134 uint64_t lv = dt_pq_getvalue(p, lc); in dt_pq_pop() local 137 if (lv < rv) { in dt_pq_pop() 139 v = lv; in dt_pq_pop()
|