Searched refs:DV (Results 1 - 25 of 45) sorted by relevance

12

/netbsd-current/external/apache2/llvm/dist/llvm/tools/llvm-mca/Views/
H A DSummaryView.cpp68 DisplayValues DV; local
70 collectData(DV);
71 TempStream << "Iterations: " << DV.Iterations;
72 TempStream << "\nInstructions: " << DV.TotalInstructions;
73 TempStream << "\nTotal Cycles: " << DV.TotalCycles;
74 TempStream << "\nTotal uOps: " << DV.TotalUOps << '\n';
75 TempStream << "\nDispatch Width: " << DV.DispatchWidth;
77 << format("%.2f", floor((DV.UOpsPerCycle * 100) + 0.5) / 100);
79 << format("%.2f", floor((DV.IPC * 100) + 0.5) / 100);
81 << format("%.1f", floor((DV
101 DisplayValues DV; local
[all...]
H A DSummaryView.h80 /// Compute the data we want to print out in the object DV.
81 void collectData(DisplayValues &DV) const;
/netbsd-current/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
H A DCastValueChecker.cpp77 void evalCast(const CallEvent &Call, DefinedOrUnknownSVal DV,
79 void evalDynCast(const CallEvent &Call, DefinedOrUnknownSVal DV,
81 void evalCastOrNull(const CallEvent &Call, DefinedOrUnknownSVal DV,
83 void evalDynCastOrNull(const CallEvent &Call, DefinedOrUnknownSVal DV,
85 void evalCastAs(const CallEvent &Call, DefinedOrUnknownSVal DV,
87 void evalGetAs(const CallEvent &Call, DefinedOrUnknownSVal DV,
89 void evalIsa(const CallEvent &Call, DefinedOrUnknownSVal DV,
91 void evalIsaAndNonNull(const CallEvent &Call, DefinedOrUnknownSVal DV,
197 static void addCastTransition(const CallEvent &Call, DefinedOrUnknownSVal DV,
201 ProgramStateRef State = C.getState()->assume(DV, IsNonNullPara
[all...]
H A DDivZeroChecker.cpp70 Optional<DefinedSVal> DV = Denom.getAs<DefinedSVal>(); local
74 if (!DV)
80 std::tie(stateNotZero, stateZero) = CM.assumeDual(C.getState(), *DV);
88 bool TaintedD = isTainted(C.getState(), *DV);
91 std::make_unique<taint::TaintBugVisitor>(*DV));
H A DNonNullParamChecker.cpp135 auto DV = V.getAs<DefinedSVal>(); local
136 if (!DV)
139 assert(!HasRefTypeParam || DV->getAs<Loc>());
142 if (ExpectedToBeNonNull && !DV->getAs<Loc>()) {
153 auto CSV = DV->getAs<nonloc::CompoundVal>();
160 DV = V.getAs<DefinedSVal>();
175 std::tie(stateNotNull, stateNull) = CM.assumeDual(state, *DV);
H A DIterator.cpp280 if (auto DV = IsCappedFromAbove.getAs<DefinedSVal>()) {
281 NewState = NewState->assume(*DV, true);
290 if (auto DV = IsCappedFromBelow.getAs<DefinedSVal>()) {
291 NewState = NewState->assume(*DV, true);
/netbsd-current/usr.bin/tip/
H A Dremote.c54 &AT, &DV, &CM, &CU, &EL, &IE, &OE, &PN, &PR, &DI,
92 if (DV ||
93 (host[0] == '/' && access(DV = host, R_OK | W_OK) == 0)) {
94 CU = DV;
130 if (DV == NULL) {
134 CU = DV;
146 HW = (CU == NULL) || (DU && strcmp(DV, CU) == 0);
211 next = DV;
221 DV = next;
225 DV
[all...]
H A Dcu.c83 DV = NULL;
133 if (DV != NULL)
136 DV = optarg;
138 (void)asprintf(&DV, "/dev/%s", optarg);
H A Dtip.h62 extern char *DV; /* UNIX device(s) to open */
/netbsd-current/external/apache2/llvm/dist/llvm/lib/CodeGen/
H A DExecutionDomainFix.cpp35 void ExecutionDomainFix::release(DomainValue *DV) { argument
36 while (DV) {
37 assert(DV->Refs && "Bad DomainValue");
38 if (--DV->Refs)
41 // There are no more DV references. Collapse any contained instructions.
42 if (DV->AvailableDomains && !DV->isCollapsed())
43 collapse(DV, DV->getFirstDomain());
45 DomainValue *Next = DV
54 DomainValue *DV = DVRef; local
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
H A DAntiDepBreaker.h74 for (const auto &DV : make_range(DbgValues.crbegin(), DbgValues.crend())) {
75 MachineInstr *PrevMI = DV.second;
77 MachineInstr *DbgMI = DV.first;
H A DExecutionDomainFix.h164 /// Add reference to DV.
165 DomainValue *retain(DomainValue *DV) {
166 if (DV)
167 ++DV->Refs;
168 return DV;
171 /// Release a reference to DV. When the last reference is released,
180 void setLiveReg(int rx, DomainValue *DV);
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Analysis/
H A DLegacyDivergenceAnalysis.cpp98 PostDominatorTree &PDT, DenseSet<const Value *> &DV,
100 : F(F), TTI(TTI), DT(DT), PDT(PDT), DV(DV), DU(DU) {}
123 DenseSet<const Value *> &DV; // Stores all divergent values. member in class:__anon1670::DivergencePropagator
130 DV.clear();
135 DV.insert(&I);
141 DV.insert(&Arg);
175 if (!cast<PHINode>(I)->hasConstantOrUndefValue() && DV.insert(&*I).second)
207 if (!DV.count(&I))
223 if (DV
97 DivergencePropagator(Function &F, TargetTransformInfo &TTI, DominatorTree &DT, PostDominatorTree &PDT, DenseSet<const Value *> &DV, DenseSet<const Use *> &DU) argument
[all...]
H A DDependenceAnalysis.cpp263 DV = std::make_unique<DVEntry[]>(CommonLevels);
271 return DV[Level - 1].Direction;
278 return DV[Level - 1].Distance;
287 return DV[Level - 1].Scalar;
295 return DV[Level - 1].PeelFirst;
303 return DV[Level - 1].PeelLast;
310 return DV[Level - 1].Splitable;
1197 Result.DV[Level].Distance = SE->getConstant(Distance);
1200 Result.DV[Level].Direction &= Dependence::DVEntry::LT;
1202 Result.DV[Leve
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfFile.cpp108 const DILocalVariable *DV = Var->getVariable(); local
109 if (unsigned ArgNum = DV->getArg()) {
H A DDwarfCompileUnit.cpp691 DIE *DwarfCompileUnit::constructVariableDIE(DbgVariable &DV, bool Abstract) { argument
692 auto D = constructVariableDIEImpl(DV, Abstract);
693 DV.setDIE(*D);
709 DIE *DwarfCompileUnit::constructVariableDIEImpl(const DbgVariable &DV, argument
712 auto VariableDie = DIE::get(DIEValueAllocator, DV.getTag());
713 insertDIE(DV.getVariable(), VariableDie);
716 applyVariableAttributes(DV, *VariableDie);
722 unsigned Index = DV.getDebugLocListIndex();
725 auto TagOffset = DV.getDebugLocListTagOffset();
733 if (auto *DVal = DV
885 constructVariableDIE(DbgVariable &DV, const LexicalScope &Scope, DIE *&ObjectPointer) argument
1406 addVariableAddress(const DbgVariable &DV, DIE &Die, MachineLocation Location) argument
1440 addComplexAddress(const DbgVariable &DV, DIE &Die, dwarf::Attribute Attribute, const MachineLocation &Location) argument
[all...]
H A DDwarfCompileUnit.h91 DIE *constructVariableDIEImpl(const DbgVariable &DV, bool Abstract);
215 DIE *constructVariableDIE(DbgVariable &DV, bool Abstract = false);
217 DIE *constructVariableDIE(DbgVariable &DV, const LexicalScope &Scope,
329 void addVariableAddress(const DbgVariable &DV, DIE &Die,
339 void addComplexAddress(const DbgVariable &DV, DIE &Die,
H A DDbgEntityHistoryCalculator.cpp364 static void handleNewDebugValue(InlinedEntity Var, const MachineInstr &DV, argument
369 if (HistMap.startDbgValue(Var, DV, NewIndex)) {
375 const DIExpression *DIExpr = DV.getDebugExpression();
379 const MachineInstr &DV = *Entry.getInstr(); local
380 bool Overlaps = DIExpr->fragmentsOverlap(DV.getDebugExpression());
385 if (!DV.isDebugEntryValue())
386 for (const MachineOperand &Op : DV.debug_operands())
393 if (!DV.isDebugEntryValue()) {
394 for (const MachineOperand &Op : DV.debug_operands()) {
H A DDebugLocEntry.h161 for (DbgValueLocEntry DV : ValueLocEntries)
162 DV.dump();
/netbsd-current/usr.bin/tip/aculib/
H A Ddn11.c88 if ((FD = open(DV, O_RDWR)) < 0) {
H A Dv831.c91 if ((FD = open(DV, O_RDWR)) < 0) {
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/Support/
H A DFormat.h174 FormattedNumber(uint64_t HV, int64_t DV, unsigned W, bool H, bool U, argument
176 : HexValue(HV), DecValue(DV), Width(W), Hex(H), Upper(U),
/netbsd-current/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
H A DScheduleDAGSDNodes.cpp742 /// Returns true if \p DV has any VReg operand locations which don't exist in
744 auto HasUnknownVReg = [&VRBaseMap](SDDbgValue *DV) {
745 for (SDDbgOperand L : DV->getLocationOps()) {
757 for (auto DV : DAG->GetDbgValues(N)) {
758 if (DV->isEmitted())
760 unsigned DVOrder = DV->getOrder();
763 // If DV has any VReg location operands which haven't been mapped then
768 if (!DV->isInvalidated() && HasUnknownVReg(DV))
770 MachineInstr *DbgMI = Emitter.EmitDbgValue(DV, VRBaseMa
[all...]
H A DScheduleDAGFast.cpp778 for (auto DV : DAG->GetDbgValues(N)) {
779 if (!DV->isEmitted())
780 if (auto *DbgMI = Emitter.EmitDbgValue(DV, VRBaseMap))
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
H A DDebugify.cpp310 if (const auto *DV = dyn_cast<DILocalVariable>(DN)) {
311 DIPreservationMap[NameOfWrappedPass].DIVariables[DV] = 0;
545 if (const auto *DV = dyn_cast<DILocalVariable>(DN)) {
546 DIPreservationAfter[NameOfWrappedPass].DIVariables[DV] = 0;

Completed in 403 milliseconds

12