Home
last modified time | relevance | path

Searched refs:DV (Results 1 – 25 of 35) sorted by relevance

12

/NextBSD/usr.bin/tip/tip/
HDremote.c61 &AT, &DV, &CM, &CU, &EL, &IE, &OE, &PN, &PR, &DI,
94 if ((DV != NULL) || in getremcap()
95 (host[0] == '/' && access(DV = host, R_OK | W_OK) == 0)) { in getremcap()
96 CU = DV; in getremcap()
136 if (DV == NOSTR) { in getremcap()
141 CU = DV; in getremcap()
158 HW = (CU == NOSTR) || (DU && equal(DV, CU)); in getremcap()
224 next = DV; in getremote()
234 DV = next; in getremote()
238 DV = next; in getremote()
[all …]
HDcu.c60 CU = DV = NOSTR; in cumain()
88 if (DV != NULL) { in cumain()
95 DV = optarg; in cumain()
97 asprintf(&DV, "/dev/%s", optarg); in cumain()
HDacu.c77 logent(value(HOST), "", DV, "call completed"); in con()
166 logent(value(HOST), "", DV, "call terminated"); in disconnect()
HDtip.h62 char *DV; /* UNIX device(s) to open */ variable
/NextBSD/contrib/llvm/lib/CodeGen/
HDExecutionDepsFix.cpp181 DomainValue *retain(DomainValue *DV) { in retain() argument
182 if (DV) ++DV->Refs; in retain()
183 return DV; in retain()
189 void setLiveReg(int rx, DomainValue *DV);
230 void ExeDepsFix::release(DomainValue *DV) { in release() argument
231 while (DV) { in release()
232 assert(DV->Refs && "Bad DomainValue"); in release()
233 if (--DV->Refs) in release()
237 if (DV->AvailableDomains && !DV->isCollapsed()) in release()
238 collapse(DV, DV->getFirstDomain()); in release()
[all …]
/NextBSD/contrib/llvm/lib/CodeGen/AsmPrinter/
HDDwarfCompileUnit.cpp462 DIE *DwarfCompileUnit::constructVariableDIE(DbgVariable &DV, bool Abstract) { in constructVariableDIE() argument
463 auto D = constructVariableDIEImpl(DV, Abstract); in constructVariableDIE()
464 DV.setDIE(*D); in constructVariableDIE()
468 DIE *DwarfCompileUnit::constructVariableDIEImpl(const DbgVariable &DV, in constructVariableDIEImpl() argument
471 auto VariableDie = DIE::get(DIEValueAllocator, DV.getTag()); in constructVariableDIEImpl()
474 applyVariableAttributes(DV, *VariableDie); in constructVariableDIEImpl()
480 unsigned Offset = DV.getDebugLocListIndex(); in constructVariableDIEImpl()
487 if (const MachineInstr *DVInsn = DV.getMInsn()) { in constructVariableDIEImpl()
495 addVariableAddress(DV, *VariableDie, Location); in constructVariableDIEImpl()
497 addVariableAddress(DV, *VariableDie, MachineLocation(RegOp.getReg())); in constructVariableDIEImpl()
[all …]
HDDwarfCompileUnit.h61 DIE *constructVariableDIEImpl(const DbgVariable &DV, bool Abstract);
138 DIE *constructVariableDIE(DbgVariable &DV, bool Abstract = false);
140 DIE *constructVariableDIE(DbgVariable &DV, const LexicalScope &Scope,
194 void addVariableAddress(const DbgVariable &DV, DIE &Die,
204 void addComplexAddress(const DbgVariable &DV, DIE &Die,
HDDwarfFile.cpp140 const DILocalVariable *DV = Var->getVariable(); in addScopeVariable() local
142 if (unsigned ArgNum = DV->getArg()) { in addScopeVariable()
HDDwarfDebug.cpp937 for (const DILocalVariable *DV : SP->getVariables()) { in collectVariableInfo() local
938 if (Processed.insert(InlinedVariable(DV, nullptr)).second) in collectVariableInfo()
939 if (LexicalScope *Scope = LScopes.findLexicalScope(DV->getScope())) in collectVariableInfo()
940 createConcreteVariable(*Scope, InlinedVariable(DV, nullptr)); in collectVariableInfo()
1219 for (const DILocalVariable *DV : SP->getVariables()) { in endFunction() local
1220 if (!ProcessedVars.insert(InlinedVariable(DV, nullptr)).second) in endFunction()
1222 ensureAbstractVariableIsCreated(InlinedVariable(DV, nullptr), in endFunction()
1223 DV->getScope()); in endFunction()
HDDwarfUnit.h282 void addBlockByrefAddress(const DbgVariable &DV, DIE &Die,
HDDwarfDebug.h364 void createAbstractVariable(const DILocalVariable *DV, LexicalScope *Scope);
/NextBSD/contrib/llvm/lib/Analysis/
HDDivergenceAnalysis.cpp132 DenseSet<const Value *> &DV) in DivergencePropagator() argument
133 : F(F), TTI(TTI), DT(DT), PDT(PDT), DV(DV) {} in DivergencePropagator()
156 DenseSet<const Value *> &DV; // Stores all divergent values. member in __anon4ec144720211::DivergencePropagator
161 DV.clear(); in populateWithSourcesOfDivergence()
165 DV.insert(&I); in populateWithSourcesOfDivergence()
171 DV.insert(&Arg); in populateWithSourcesOfDivergence()
194 if (!cast<PHINode>(I)->hasConstantValue() && DV.insert(I).second) in exploreSyncDependency()
239 if (DV.insert(UserInst).second) in findUsersOutsideInfluenceRegion()
267 if (DV.insert(UserInst).second) in exploreDataDependency()
HDDependenceAnalysis.cpp236 DV = CommonLevels ? new DVEntry[CommonLevels] : nullptr; in FullDependence()
244 return DV[Level - 1].Direction; in getDirection()
251 return DV[Level - 1].Distance; in getDistance()
260 return DV[Level - 1].Scalar; in isScalar()
268 return DV[Level - 1].PeelFirst; in isPeelFirst()
276 return DV[Level - 1].PeelLast; in isPeelLast()
283 return DV[Level - 1].Splitable; in isSplitable()
1131 Result.DV[Level].Distance = SE->getConstant(Distance); in strongSIVtest()
1134 Result.DV[Level].Direction &= Dependence::DVEntry::LT; in strongSIVtest()
1136 Result.DV[Level].Direction &= Dependence::DVEntry::GT; in strongSIVtest()
[all …]
/NextBSD/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/
HDNonNullParamChecker.cpp97 Optional<DefinedSVal> DV = V.getAs<DefinedSVal>(); in checkPreCall() local
98 if (!DV) in checkPreCall()
102 assert(!haveRefTypeParam || DV->getAs<Loc>()); in checkPreCall()
104 if (haveAttrNonNull && !DV->getAs<Loc>()) { in checkPreCall()
116 DV->getAs<nonloc::CompoundVal>()) { in checkPreCall()
120 DV = V.getAs<DefinedSVal>(); in checkPreCall()
140 std::tie(stateNotNull, stateNull) = CM.assumeDual(state, *DV); in checkPreCall()
HDDivZeroChecker.cpp61 Optional<DefinedSVal> DV = Denom.getAs<DefinedSVal>(); in checkPreStmt() local
65 if (!DV) in checkPreStmt()
71 std::tie(stateNotZero, stateZero) = CM.assumeDual(C.getState(), *DV); in checkPreStmt()
79 bool TaintedD = C.getState()->isTainted(*DV); in checkPreStmt()
HDBoolAssignmentChecker.cpp72 Optional<DefinedSVal> DV = val.getAs<DefinedSVal>(); in checkBind() local
73 if (!DV) in checkBind()
86 svalBuilder.evalBinOp(state, BO_GE, *DV, zeroVal, in checkBind()
122 svalBuilder.evalBinOp(state, BO_LE, *DV, OneVal, in checkBind()
HDStreamChecker.cpp343 Optional<DefinedSVal> DV = SV.getAs<DefinedSVal>(); in CheckNullStream() local
344 if (!DV) in CheckNullStream()
349 std::tie(stateNotNull, stateNull) = CM.assumeDual(state, *DV); in CheckNullStream()
/NextBSD/contrib/llvm/lib/IR/
HDDebugInfo.cpp232 auto *DV = dyn_cast<DILocalVariable>(N); in processDeclare() local
233 if (!DV) in processDeclare()
236 if (!NodesSeen.insert(DV).second) in processDeclare()
238 processScope(DV->getScope()); in processDeclare()
239 processType(DV->getType().resolve(TypeIdentifierMap)); in processDeclare()
248 auto *DV = dyn_cast<DILocalVariable>(N); in processValue() local
249 if (!DV) in processValue()
252 if (!NodesSeen.insert(DV).second) in processValue()
254 processScope(DV->getScope()); in processValue()
255 processType(DV->getType().resolve(TypeIdentifierMap)); in processValue()
/NextBSD/contrib/llvm/include/llvm/Support/
HDFormat.h150 FormattedNumber(uint64_t HV, int64_t DV, unsigned W, bool H, bool U, in FormattedNumber() argument
152 : HexValue(HV), DecValue(DV), Width(W), Hex(H), Upper(U), in FormattedNumber()
/NextBSD/usr.bin/tip/libacu/
HDdn11.c91 if ((FD = open(DV, 2)) < 0) { in dn_dialer()
HDv831.c96 if ((FD = open(DV, O_RDWR)) < 0) { in v831_dialer()
/NextBSD/contrib/llvm/include/llvm/Analysis/
HDDependenceAnalysis.h223 ~FullDependence() override { delete[] DV; } in ~FullDependence()
271 DVEntry *DV; variable
/NextBSD/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/
HDBugReporterVisitors.cpp997 if (Optional<DefinedSVal> DV = V.getAs<DefinedSVal>()) { in trackNullOrUndefValue() local
998 if (!DV->isZeroConstant() && LVState->isNull(*DV).isConstrainedTrue() && in trackNullOrUndefValue()
1001 llvm::make_unique<SuppressInlineDefensiveChecksVisitor>(*DV, in trackNullOrUndefValue()
/NextBSD/share/doc/smm/01.setup/
HDspell.ok33 DV
/NextBSD/sys/dev/firewire/
HD00README98 6. DV

12