/freebsd/contrib/llvm-project/llvm/tools/llvm-mca/Views/ |
H A D | SummaryView.cpp | 67 DisplayValues DV; in printView() local 69 collectData(DV); in printView() 70 TempStream << "Iterations: " << DV.Iterations; in printView() 71 TempStream << "\nInstructions: " << DV.TotalInstructions; in printView() 72 TempStream << "\nTotal Cycles: " << DV.TotalCycles; in printView() 73 TempStream << "\nTotal uOps: " << DV.TotalUOps << '\n'; in printView() 74 TempStream << "\nDispatch Width: " << DV.DispatchWidth; in printView() 76 << format("%.2f", floor((DV.UOpsPerCycle * 100) + 0.5) / 100); in printView() 78 << format("%.2f", floor((DV.IPC * 100) + 0.5) / 100); in printView() 80 << format("%.1f", floor((DV.BlockRThroughput * 10) + 0.5) / 10) in printView() [all …]
|
H A D | SummaryView.h | 73 /// Compute the data we want to print out in the object DV. 74 void collectData(DisplayValues &DV) const;
|
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
H A D | CastValueChecker.cpp | 78 void evalCast(const CallEvent &Call, DefinedOrUnknownSVal DV, 80 void evalDynCast(const CallEvent &Call, DefinedOrUnknownSVal DV, 82 void evalCastOrNull(const CallEvent &Call, DefinedOrUnknownSVal DV, 84 void evalDynCastOrNull(const CallEvent &Call, DefinedOrUnknownSVal DV, 86 void evalCastAs(const CallEvent &Call, DefinedOrUnknownSVal DV, 88 void evalGetAs(const CallEvent &Call, DefinedOrUnknownSVal DV, 90 void evalIsa(const CallEvent &Call, DefinedOrUnknownSVal DV, 92 void evalIsaAndNonNull(const CallEvent &Call, DefinedOrUnknownSVal DV, 198 static void addCastTransition(const CallEvent &Call, DefinedOrUnknownSVal DV, in addCastTransition() argument 202 ProgramStateRef State = C.getState()->assume(DV, IsNonNullParam); in addCastTransition() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Target/WebAssembly/ |
H A D | WebAssemblyDebugValueManager.cpp | 113 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() 116 DV->getDebugLoc()->getInlinedAt()); in getSinkableDebugValues() 117 SeenDbgVarToDbgValues[Var].push_back(DV); in getSinkableDebugValues() 132 for (auto *DV : DbgValues) { in getSinkableDebugValues() local 133 DebugVariable Var(DV->getDebugVariable(), DV->getDebugExpression(), in getSinkableDebugValues() 134 DV->getDebugLoc()->getInlinedAt()); in getSinkableDebugValues() 137 SinkableDbgValues.push_back(DV); in getSinkableDebugValues() 213 SinkableDbgValues.push_back(DV); in getSinkableDebugValues() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
H A D | ExecutionDomainFix.cpp | 35 void ExecutionDomainFix::release(DomainValue *DV) { in release() argument 36 while (DV) { in release() 37 assert(DV->Refs && "Bad DomainValue"); in release() 38 if (--DV->Refs) in release() 42 if (DV->AvailableDomains && !DV->isCollapsed()) in release() 43 collapse(DV, DV->getFirstDomain()); in release() 45 DomainValue *Next = DV->Next; in release() 46 DV->clear(); in release() 47 Avail.push_back(DV); in release() 49 DV = Next; in release() [all …]
|
H A D | AssignmentTrackingAnalysis.cpp | 2173 DebugVariable DV = DebugVariable(Record); in buildOverlapMapAndRecordDeclares() local 2174 DebugAggregate DA = {DV.getVariable(), DV.getInlinedAt()}; in buildOverlapMapAndRecordDeclares() 2177 if (Seen.insert(DV).second) in buildOverlapMapAndRecordDeclares() 2178 FragmentMap[DA].push_back(DV); in buildOverlapMapAndRecordDeclares() 2208 DebugVariable DV = in buildOverlapMapAndRecordDeclares() local 2211 DebugAggregate DA = {DV.getVariable(), DV.getInlinedAt()}; in buildOverlapMapAndRecordDeclares() 2217 {FnVarLocs->insertVariable(DV), *Info}); in buildOverlapMapAndRecordDeclares() 2219 if (Seen.insert(DV).second) in buildOverlapMapAndRecordDeclares() 2220 FragmentMap[DA].push_back(DV); in buildOverlapMapAndRecordDeclares()
|
/freebsd/usr.bin/tip/tip/ |
H A D | remote.c | 47 &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 D | cu.c | 52 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 D | acu.c | 69 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 D | ExecutionDomainFix.h | 165 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 D | AntiDepBreaker.h | 80 for (const auto &DV : make_range(DbgValues.crbegin(), DbgValues.crend())) { in UpdateDbgValues() 81 MachineInstr *PrevMI = DV.second; in UpdateDbgValues() local 83 MachineInstr *DbgMI = DV.first; in UpdateDbgValues()
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/ |
H A D | DwarfCompileUnit.h | 101 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 D | DbgEntityHistoryCalculator.cpp | 370 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 D | DwarfCompileUnit.cpp | 761 DIE *DwarfCompileUnit::constructVariableDIE(DbgVariable &DV, bool Abstract) { in constructVariableDIE() argument 762 auto *VariableDie = DIE::get(DIEValueAllocator, DV.getTag()); in constructVariableDIE() 763 insertDIE(DV.getVariable(), VariableDie); in constructVariableDIE() 764 DV.setDIE(*VariableDie); in constructVariableDIE() 767 applyCommonDbgVariableAttributes(DV, *VariableDie); in constructVariableDIE() 771 applyConcreteDbgVariableAttributes(V, DV, *VariableDie); in constructVariableDIE() 773 DV.asVariant()); in constructVariableDIE() 779 const Loc::Single &Single, const DbgVariable &DV, DIE &VariableDie) { in applyConcreteDbgVariableAttributes() argument 784 addVariableAddress(DV, VariableDie, Entry->getLoc()); in applyConcreteDbgVariableAttributes() 799 addConstantValue(VariableDie, Entry->getInt(), DV.getType()); in applyConcreteDbgVariableAttributes() [all …]
|
H A D | DwarfFile.cpp | 107 const DILocalVariable *DV = Var->getVariable(); in addScopeVariable() local 108 if (unsigned ArgNum = DV->getArg()) { in addScopeVariable()
|
H A D | DebugLocEntry.h | 175 for (const DbgValueLocEntry &DV : ValueLocEntries) in dump() local 176 DV.dump(); in dump()
|
/freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
H A D | DependenceAnalysis.cpp | 272 DV = std::make_unique<DVEntry[]>(CommonLevels); in FullDependence() 292 unsigned char Direction = DV[Level - 1].Direction; in isDirectionNegative() 311 unsigned char Direction = DV[Level - 1].Direction; in normalize() 319 DV[Level - 1].Direction = RevDirection; in normalize() 321 if (DV[Level - 1].Distance != nullptr) in normalize() 322 DV[Level - 1].Distance = in normalize() 323 SE->getNegativeSCEV(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() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/IR/ |
H A D | DebugProgramInstruction.cpp | 64 DbgVariableRecord::DbgVariableRecord(Metadata *Location, DILocalVariable *DV, in DbgVariableRecord() argument 68 Type(Type), Variable(DV), Expression(Expr) {} 179 DbgVariableRecord::createDbgVariableRecord(Value *Location, DILocalVariable *DV, in createDbgVariableRecord() argument 182 return new DbgVariableRecord(ValueAsMetadata::get(Location), DV, Expr, DI, in createDbgVariableRecord() 187 Value *Location, DILocalVariable *DV, DIExpression *Expr, in createDbgVariableRecord() argument 189 auto *NewDbgVariableRecord = createDbgVariableRecord(Location, DV, Expr, DI); in createDbgVariableRecord() 195 DILocalVariable *DV, in createDVRDeclare() argument 198 return new DbgVariableRecord(ValueAsMetadata::get(Address), DV, Expr, DI, in createDVRDeclare() 203 DbgVariableRecord::createDVRDeclare(Value *Address, DILocalVariable *DV, in createDVRDeclare() argument 206 auto *NewDVRDeclare = createDVRDeclare(Address, DV, Expr, DI); in createDVRDeclare()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/ |
H A D | DebugProgramInstruction.h | 295 DbgVariableRecord(Metadata *Location, DILocalVariable *DV, DIExpression *Expr, 338 DILocalVariable *DV, 342 createDbgVariableRecord(Value *Location, DILocalVariable *DV, 346 DILocalVariable *DV, 350 createDVRDeclare(Value *Address, DILocalVariable *DV, DIExpression *Expr,
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
H A D | ScheduleDAGSDNodes.cpp | 746 auto HasUnknownVReg = [&VRBaseMap](SDDbgValue *DV) { in ProcessSDDbgValues() argument 747 for (const SDDbgOperand &L : DV->getLocationOps()) { in ProcessSDDbgValues() 759 for (auto *DV : DAG->GetDbgValues(N)) { in ProcessSDDbgValues() local 760 if (DV->isEmitted()) in ProcessSDDbgValues() 762 unsigned DVOrder = DV->getOrder(); in ProcessSDDbgValues() 770 if (!DV->isInvalidated() && HasUnknownVReg(DV)) in ProcessSDDbgValues() 772 MachineInstr *DbgMI = Emitter.EmitDbgValue(DV, VRBaseMap); in ProcessSDDbgValues()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
H A D | Local.cpp | 1659 static void insertDbgValueOrDbgVariableRecord(DIBuilder &Builder, Value *DV, in insertDbgValueOrDbgVariableRecord() argument 1665 auto DbgVal = Builder.insertDbgValueIntrinsic(DV, DIVar, DIExpr, NewLoc, in insertDbgValueOrDbgVariableRecord() 1671 ValueAsMetadata *DVAM = ValueAsMetadata::get(DV); in insertDbgValueOrDbgVariableRecord() 1672 DbgVariableRecord *DV = in insertDbgValueOrDbgVariableRecord() local 1674 Instr->getParent()->insertDbgRecordBefore(DV, Instr); in insertDbgValueOrDbgVariableRecord() 1679 DIBuilder &Builder, Value *DV, DILocalVariable *DIVar, DIExpression *DIExpr, in insertDbgValueOrDbgVariableRecordAfter() argument 1682 auto DbgVal = Builder.insertDbgValueIntrinsic(DV, DIVar, DIExpr, NewLoc, in insertDbgValueOrDbgVariableRecordAfter() 1688 ValueAsMetadata *DVAM = ValueAsMetadata::get(DV); in insertDbgValueOrDbgVariableRecordAfter() 1689 DbgVariableRecord *DV = in insertDbgValueOrDbgVariableRecordAfter() local 1691 Instr->getParent()->insertDbgRecordAfter(DV, &*Instr); in insertDbgValueOrDbgVariableRecordAfter() [all …]
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/ |
H A D | Format.h | 175 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 D | dn11.c | 83 if ((FD = open(DV, 2)) < 0) { in dn_dialer()
|
/freebsd/contrib/llvm-project/llvm/utils/TableGen/Common/ |
H A D | VarLenCodeEmitterGen.cpp | 473 const auto *DV = cast<DagInit>(Val); in getInstructionCaseForEncoding() local 474 OperandName = cast<StringInit>(DV->getArg(0))->getValue(); in getInstructionCaseForEncoding() 475 LoBit = static_cast<unsigned>(cast<IntInit>(DV->getArg(2))->getValue()); in getInstructionCaseForEncoding()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/BPF/ |
H A D | BTFDebug.cpp | 610 if (const auto *DV = dyn_cast<DILocalVariable>(DN)) { in processDISubprogram() local 611 uint32_t Arg = DV->getArg(); in processDISubprogram() 613 processDeclAnnotations(DV->getAnnotations(), FuncId, Arg - 1); in processDISubprogram() 1203 if (const auto *DV = dyn_cast<DILocalVariable>(DN)) { in beginFunctionImpl() local 1205 uint32_t Arg = DV->getArg(); in beginFunctionImpl() 1207 visitTypeEntry(DV->getType()); in beginFunctionImpl() 1208 FuncArgNames[Arg] = DV->getName(); in beginFunctionImpl()
|