Home
last modified time | relevance | path

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

123

/freebsd/contrib/llvm-project/llvm/tools/llvm-mca/Views/
H A DSummaryView.cpp67 DisplayValues DV; in printView() local
69 collectData(DV); in printView()
87 DV.Instructions = Source.size(); in collectData()
88 DV.Iterations = (LastInstructionIdx / DV.Instructions) + 1; in collectData()
89 DV.TotalInstructions = DV.Instructions * DV.Iterations; in collectData()
90 DV.TotalCycles = TotalCycles; in collectData()
92 DV.TotalUOps = NumMicroOps * DV.Iterations; in collectData()
93 DV.UOpsPerCycle = (double)DV.TotalUOps / TotalCycles; in collectData()
94 DV.IPC = (double)DV.TotalInstructions / TotalCycles; in collectData()
100 DisplayValues DV; in toJSON() local
[all …]
H A DSummaryView.h74 void collectData(DisplayValues &DV) const;
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DCastValueChecker.cpp227 const MemRegion *MR = DV.getAsRegion(); in addCastTransition()
283 const MemRegion *MR = DV.getAsRegion(); in addInstanceOfTransition()
378 evalNonNullParamNullReturn(Call, DV, C); in evalDynCast()
385 evalNullParamNullReturn(Call, DV, C); in evalCastOrNull()
392 evalNonNullParamNullReturn(Call, DV, C); in evalDynCastOrNull()
393 evalNullParamNullReturn(Call, DV, C); in evalDynCastOrNull()
423 evalZeroParamNonNullReturn(Call, DV, C); in evalGetAs()
424 evalZeroParamNullReturn(Call, DV, C); in evalGetAs()
475 std::optional<DefinedOrUnknownSVal> DV; in evalCall() local
510 if (!DV) in evalCall()
[all …]
H A DNonNullParamChecker.cpp137 auto DV = V.getAs<DefinedSVal>(); in checkPreCall() local
138 if (!DV) in checkPreCall()
141 assert(!HasRefTypeParam || isa<Loc>(*DV)); in checkPreCall()
144 if (ExpectedToBeNonNull && !isa<Loc>(*DV)) { in checkPreCall()
155 auto CSV = DV->getAs<nonloc::CompoundVal>(); in checkPreCall()
162 DV = V.getAs<DefinedSVal>(); in checkPreCall()
177 std::tie(stateNotNull, stateNull) = CM.assumeDual(state, *DV); in checkPreCall()
H A DDivZeroChecker.cpp83 std::optional<DefinedSVal> DV = Denom.getAs<DefinedSVal>(); in checkPreStmt() local
87 if (!DV) in checkPreStmt()
93 std::tie(stateNotZero, stateZero) = CM.assumeDual(C.getState(), *DV); in checkPreStmt()
102 std::vector<SymbolRef> taintedSyms = getTaintedSymbols(C.getState(), *DV); in checkPreStmt()
H A DIterator.cpp278 if (auto DV = IsCappedFromAbove.getAs<DefinedSVal>()) { in assumeNoOverflow() local
279 NewState = NewState->assume(*DV, true); in assumeNoOverflow()
288 if (auto DV = IsCappedFromBelow.getAs<DefinedSVal>()) { in assumeNoOverflow() local
289 NewState = NewState->assume(*DV, true); in assumeNoOverflow()
/freebsd/contrib/llvm-project/llvm/lib/Target/WebAssembly/
H A DWebAssemblyDebugValueManager.cpp113 for (auto *DV : DbgValuesInBetween) { in getSinkableDebugValues() local
114 if (!llvm::is_contained(DbgValues, DV)) { in getSinkableDebugValues()
115 DebugVariable Var(DV->getDebugVariable(), DV->getDebugExpression(), in getSinkableDebugValues()
132 for (auto *DV : DbgValues) { in getSinkableDebugValues() local
133 DebugVariable Var(DV->getDebugVariable(), DV->getDebugExpression(), in getSinkableDebugValues()
137 SinkableDbgValues.push_back(DV); in getSinkableDebugValues()
213 SinkableDbgValues.push_back(DV); in getSinkableDebugValues()
338 for (MachineInstr *DV : DbgValues) in sink()
339 DV->setDebugValueUndef(); in sink()
417 for (MachineInstr *DV : DbgValues) in removeDef()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DExecutionDomainFix.cpp36 while (DV) { in release()
42 if (DV->AvailableDomains && !DV->isCollapsed()) in release()
43 collapse(DV, DV->getFirstDomain()); in release()
46 DV->clear(); in release()
49 DV = Next; in release()
55 if (!DV || !DV->Next) in resolve()
56 return DV; in resolve()
60 DV = DV->Next; in resolve()
64 retain(DV); in resolve()
66 DVRef = DV; in resolve()
[all …]
/freebsd/usr.bin/tip/tip/
H A Dremote.c47 &AT, &DV, &CM, &CU, &EL, &IE, &OE, &PN, &PR, &DI,
80 if ((DV != NULL) || in getremcap()
81 (host[0] == '/' && access(DV = host, R_OK | W_OK) == 0)) { in getremcap()
82 CU = DV; in getremcap()
122 if (DV == NOSTR) { in getremcap()
127 CU = DV; in getremcap()
144 HW = (CU == NOSTR) || (DU && equal(DV, CU)); in getremcap()
210 next = DV; in getremote()
220 DV = next; in getremote()
224 DV = next; in getremote()
[all …]
H A Dcu.c52 CU = DV = NOSTR; in cumain()
80 if (DV != NULL) { in cumain()
87 DV = optarg; in cumain()
89 asprintf(&DV, "/dev/%s", optarg); in cumain()
H A Dacu.c69 logent(value(HOST), "", DV, "call completed"); in con()
158 logent(value(HOST), "", DV, "call terminated"); in disconnect()
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DExecutionDomainFix.h165 DomainValue *retain(DomainValue *DV) { in retain() argument
166 if (DV) in retain()
167 ++DV->Refs; in retain()
168 return DV; in retain()
180 void setLiveReg(int rx, DomainValue *DV);
H A DAntiDepBreaker.h80 for (const auto &DV : make_range(DbgValues.crbegin(), DbgValues.crend())) { in UpdateDbgValues() local
81 MachineInstr *PrevMI = DV.second; in UpdateDbgValues()
83 MachineInstr *DbgMI = DV.first; in UpdateDbgValues()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfCompileUnit.h101 const DbgVariable &DV,
105 const DbgVariable &DV,
109 const DbgVariable &DV,
113 const DbgVariable &DV,
117 const DbgVariable &DV,
240 DIE *constructVariableDIE(DbgVariable &DV, bool Abstract = false);
244 DIE *constructVariableDIE(DbgVariable &DV, const LexicalScope &Scope,
349 void addVariableAddress(const DbgVariable &DV, DIE &Die,
H A DDbgEntityHistoryCalculator.cpp370 static void handleNewDebugValue(InlinedEntity Var, const MachineInstr &DV, in handleNewDebugValue() argument
375 if (HistMap.startDbgValue(Var, DV, NewIndex)) { in handleNewDebugValue()
381 const DIExpression *DIExpr = DV.getDebugExpression(); in handleNewDebugValue()
385 const MachineInstr &DV = *Entry.getInstr(); in handleNewDebugValue() local
386 bool Overlaps = DIExpr->fragmentsOverlap(DV.getDebugExpression()); in handleNewDebugValue()
391 if (!DV.isDebugEntryValue()) in handleNewDebugValue()
392 for (const MachineOperand &Op : DV.debug_operands()) in handleNewDebugValue()
399 if (!DV.isDebugEntryValue()) { in handleNewDebugValue()
400 for (const MachineOperand &Op : DV.debug_operands()) { in handleNewDebugValue()
H A DDwarfCompileUnit.cpp748 insertDIE(DV.getVariable(), VariableDie); in constructVariableDIE()
749 DV.setDIE(*VariableDie); in constructVariableDIE()
752 applyCommonDbgVariableAttributes(DV, *VariableDie); in constructVariableDIE()
758 DV.asVariant()); in constructVariableDIE()
769 addVariableAddress(DV, VariableDie, Entry->getLoc()); in applyConcreteDbgVariableAttributes()
933 const Loc::EntryValue &EntryValue, const DbgVariable &DV, in applyConcreteDbgVariableAttributes() argument
952 DIE *DwarfCompileUnit::constructVariableDIE(DbgVariable &DV, in constructVariableDIE() argument
956 if (DV.isObjectPointer()) in constructVariableDIE()
1110 for (auto &DV : Vars.Args) in createAndAddScopeChildren() local
1115 for (DbgVariable *DV : Locals) in createAndAddScopeChildren()
[all …]
H A DDwarfFile.cpp107 const DILocalVariable *DV = Var->getVariable(); in addScopeVariable() local
108 if (unsigned ArgNum = DV->getArg()) { in addScopeVariable()
H A DDebugLocEntry.h175 for (const DbgValueLocEntry &DV : ValueLocEntries) in dump() local
176 DV.dump(); in dump()
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DDebugProgramInstruction.cpp47 DPValue::DPValue(Metadata *Location, DILocalVariable *DV, DIExpression *Expr, in DPValue() argument
49 : DebugValueUser({Location, nullptr, nullptr}), Variable(DV), in DPValue()
62 DPValue *DPValue::createDPValue(Value *Location, DILocalVariable *DV, in createDPValue() argument
64 return new DPValue(ValueAsMetadata::get(Location), DV, Expr, DI, in createDPValue()
68 DPValue *DPValue::createDPValue(Value *Location, DILocalVariable *DV, in createDPValue() argument
71 auto *NewDPValue = createDPValue(Location, DV, Expr, DI); in createDPValue()
76 DPValue *DPValue::createDPVDeclare(Value *Address, DILocalVariable *DV, in createDPVDeclare() argument
78 return new DPValue(ValueAsMetadata::get(Address), DV, Expr, DI, in createDPVDeclare()
82 DPValue *DPValue::createDPVDeclare(Value *Address, DILocalVariable *DV, in createDPVDeclare() argument
85 auto *NewDPVDeclare = createDPVDeclare(Address, DV, Expr, DI); in createDPVDeclare()
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DDependenceAnalysis.cpp321 if (DV[Level - 1].Distance != nullptr) in normalize()
322 DV[Level - 1].Distance = in normalize()
336 return DV[Level - 1].Direction; in getDirection()
343 return DV[Level - 1].Distance; in getDistance()
352 return DV[Level - 1].Scalar; in isScalar()
360 return DV[Level - 1].PeelFirst; in isPeelFirst()
368 return DV[Level - 1].PeelLast; in isPeelLast()
375 return DV[Level - 1].Splitable; in isSplitable()
1294 Result.DV[Level].Distance = Delta; in strongSIVtest()
1385 if (!Result.DV[Level].Direction) { in weakCrossingSIVtest()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DDebugProgramInstruction.h126 DPValue(Metadata *Location, DILocalVariable *DV, DIExpression *Expr,
144 static DPValue *createDPValue(Value *Location, DILocalVariable *DV,
146 static DPValue *createDPValue(Value *Location, DILocalVariable *DV,
149 static DPValue *createDPVDeclare(Value *Address, DILocalVariable *DV,
151 static DPValue *createDPVDeclare(Value *Address, DILocalVariable *DV,
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DScheduleDAGSDNodes.cpp745 auto HasUnknownVReg = [&VRBaseMap](SDDbgValue *DV) { in ProcessSDDbgValues() argument
746 for (const SDDbgOperand &L : DV->getLocationOps()) { in ProcessSDDbgValues()
758 for (auto *DV : DAG->GetDbgValues(N)) { in ProcessSDDbgValues() local
759 if (DV->isEmitted()) in ProcessSDDbgValues()
761 unsigned DVOrder = DV->getOrder(); in ProcessSDDbgValues()
769 if (!DV->isInvalidated() && HasUnknownVReg(DV)) in ProcessSDDbgValues()
771 MachineInstr *DbgMI = Emitter.EmitDbgValue(DV, VRBaseMap); in ProcessSDDbgValues()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DLocal.cpp1658 ValueAsMetadata *DVAM = ValueAsMetadata::get(DV); in insertDbgValueOrDPValue()
1660 Instr->getParent()->insertDPValueBefore(DV, Instr); in insertDbgValueOrDPValue()
1676 ValueAsMetadata *DVAM = ValueAsMetadata::get(DV); in insertDbgValueOrDPValueAfter()
1678 Instr->getParent()->insertDPValueAfter(DV, &*Instr); in insertDbgValueOrDPValueAfter()
1690 Value *DV = SI->getValueOperand(); in ConvertDebugDeclareToDebugValue() local
1722 DV = UndefValue::get(DV->getType()); in ConvertDebugDeclareToDebugValue()
1723 insertDbgValueOrDPValue(Builder, DV, DIVar, DIExpr, NewLoc, in ConvertDebugDeclareToDebugValue()
1760 Value *DV = SI->getValueOperand(); in ConvertDebugDeclareToDebugValue() local
1794 DV = UndefValue::get(DV->getType()); in ConvertDebugDeclareToDebugValue()
1795 ValueAsMetadata *DVAM = ValueAsMetadata::get(DV); in ConvertDebugDeclareToDebugValue()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DFormat.h175 FormattedNumber(uint64_t HV, int64_t DV, unsigned W, bool H, bool U,
177 : HexValue(HV), DecValue(DV), Width(W), Hex(H), Upper(U),
/freebsd/usr.bin/tip/libacu/
H A Ddn11.c83 if ((FD = open(DV, 2)) < 0) { in dn_dialer()

123