Home
last modified time | relevance | path

Searched full:ddi (Results 1 – 25 of 40) sorted by relevance

12

/freebsd/sys/contrib/device-tree/Bindings/display/panel/
H A Djdi,lpm102a188a.yaml37 ddi-supply:
56 - ddi-supply
88 ddi-supply = <&pp1800_lcdio>;
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.h127 /// store a Value pointer, so that we can print a whole DDI as one object.
130 Print(const Value *V, const DanglingDebugInfo &DDI) : V(V), DDI(DDI) {} in Print()
132 const DanglingDebugInfo &DDI; member
135 OS << "DDI(var=" << *P.DDI.getVariable();
141 OS << ", expr=" << *P.DDI.getExpression()
142 << ", order=" << P.DDI.getSDNodeOrder()
143 << ", loc=" << P.DDI.getDebugLoc() << ")";
153 const DanglingDebugInfo &DDI) { in printDDI() argument
154 return DanglingDebugInfo::Print(V, DDI); in printDDI()
353 void salvageUnresolvedDbgValue(const Value *V, DanglingDebugInfo &DDI);
H A DSelectionDAGBuilder.cpp1427 auto isMatchingDbgValue = [&](DanglingDebugInfo &DDI) { in dropDanglingDebugInfo() argument
1428 DIVariable *DanglingVariable = DDI.getVariable(); in dropDanglingDebugInfo()
1429 DIExpression *DanglingExpr = DDI.getExpression(); in dropDanglingDebugInfo()
1432 << printDDI(nullptr, DDI) << "\n"); in dropDanglingDebugInfo()
1443 for (auto &DDI : DDIV) in dropDanglingDebugInfo() local
1444 if (isMatchingDbgValue(DDI)) in dropDanglingDebugInfo()
1445 salvageUnresolvedDbgValue(DDIMI.first, DDI); in dropDanglingDebugInfo()
1460 for (auto &DDI : DDIV) { in resolveDanglingDebugInfo() local
1461 DebugLoc DL = DDI.getDebugLoc(); in resolveDanglingDebugInfo()
1463 unsigned DbgSDNodeOrder = DDI.getSDNodeOrder(); in resolveDanglingDebugInfo()
[all …]
/freebsd/sys/contrib/device-tree/Bindings/arm/
H A Darm,vexpress-juno.yaml72 in a test chip on the core tile. See ARM DDI 0503I.
77 cores in a test chip on the core tile. See ARM DDI 0498D.
H A Dcoresight-cpu-debug.txt4 reference manual (ARM DDI 0487A.k) Chapter 'Part H: External debug'. The
H A Darm,coresight-cpu-debug.yaml17 reference manual (ARM DDI 0487A.k) Chapter 'Part H: External debug'. The
/freebsd/sys/contrib/openzfs/include/os/freebsd/spl/sys/
H A Dsysmacros.h97 * defined in the DDI/DKI interface (see also ddi.h). Application software
100 * format supported in SVR4. Macro versions of the DDI device functions are
/freebsd/contrib/llvm-project/llvm/tools/llvm-dis/
H A Dllvm-dis.cpp122 if (const DbgDeclareInst *DDI = dyn_cast<DbgDeclareInst>(I)) { in printInfoComment() local
127 OS << " [debug variable = " << DDI->getVariable()->getName() << "]"; in printInfoComment()
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DMachOPlatform.cpp44 static size_t size(const MachOPlatform::MachOJITDylibDepInfo &DDI) { in size() argument
45 return SPSMachOJITDylibDepInfo::AsArgList::size(DDI.Sealed, DDI.DepHeaders); in size()
49 const MachOPlatform::MachOJITDylibDepInfo &DDI) { in serialize() argument
50 return SPSMachOJITDylibDepInfo::AsArgList::serialize(OB, DDI.Sealed, in serialize()
51 DDI.DepHeaders); in serialize()
55 MachOPlatform::MachOJITDylibDepInfo &DDI) { in deserialize() argument
56 return SPSMachOJITDylibDepInfo::AsArgList::deserialize(IB, DDI.Sealed, in deserialize()
57 DDI.DepHeaders); in deserialize()
/freebsd/sys/cddl/contrib/opensolaris/uts/common/sys/
H A Dsysmacros.h88 * defined in the DDI/DKI interface (see also ddi.h). Application software
91 * format supported in SVR4. Macro versions of the DDI device functions are
/freebsd/contrib/llvm-project/lld/MachO/Arch/
H A DARM64Common.cpp98 // ARM DDI 0487G.a (ID011921) in relaxGotLoad()
/freebsd/sys/contrib/openzfs/man/man1/
H A Darcstat.145 .It Sy ddi%
/freebsd/sys/contrib/openzfs/cmd/
H A Darcstat.in82 "ddi%": [4, 100, "Demand data I/O hit percentage"],
639 v["ddi%"] = 100 * v["ddioh"] / v["ddread"] if v["ddread"] > 0 else 0
640 v["ddm%"] = 100 - v["ddh%"] - v["ddi%"] if v["ddread"] > 0 else 0
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Coroutines/
H A DCoroFrame.cpp970 auto *I = llvm::find_if(Container, [](auto *DDI) { in cacheDIVar() argument
971 return DDI->getExpression()->getNumElements() == 0; in cacheDIVar()
1914 auto SalvageOne = [&](auto *DDI) { in insertSpills() argument
1921 ValueAsMetadata::get(CurrentReload), DDI->getVariable(), in insertSpills()
1922 DDI->getExpression(), DDI->getDebugLoc(), in insertSpills()
1928 .insertDeclare(CurrentReload, DDI->getVariable(), in insertSpills()
1929 DDI->getExpression(), DDI->getDebugLoc(), in insertSpills()
1934 coro::salvageDebugInfo(ArgToAllocaMap, *DDI, Shape.OptimizeFrame, in insertSpills()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DLocal.cpp1929 if (auto *DDI = dyn_cast<DbgDeclareInst>(&BI)) in LowerDbgDeclare() local
1930 Dbgs.push_back(DDI); in LowerDbgDeclare()
1941 auto LowerOne = [&](auto *DDI) { in LowerDbgDeclare() argument
1943 dyn_cast_or_null<AllocaInst>(DDI->getVariableLocationOp(0)); in LowerDbgDeclare()
1971 ConvertDebugDeclareToDebugValue(DDI, SI, DIB); in LowerDbgDeclare()
1973 ConvertDebugDeclareToDebugValue(DDI, LI, DIB); in LowerDbgDeclare()
1979 DebugLoc NewLoc = getDebugValueLoc(DDI); in LowerDbgDeclare()
1981 DIExpression::append(DDI->getExpression(), dwarf::DW_OP_deref); in LowerDbgDeclare()
1982 insertDbgValueOrDbgVariableRecord(DIB, AI, DDI->getVariable(), in LowerDbgDeclare()
1992 DDI->eraseFromParent(); in LowerDbgDeclare()
/freebsd/sbin/dhclient/
H A Dconflex.c394 if (!strcasecmp(atom + 1, "ddi")) in intern()
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DDebugInfo.cpp61 if (auto *DDI = dyn_cast<DbgDeclareInst>(U)) in findDbgDeclares() local
62 Declares.push_back(DDI); in findDbgDeclares()
2184 if (DbgDeclareInst *DDI = dyn_cast<DbgDeclareInst>(&I)) in runOnFunction() local
2185 ProcessDeclare(DDI, DbgDeclares); in runOnFunction()
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DBuiltinsAMDGPU.def88 BUILTIN(__builtin_amdgcn_trig_preop, "ddi", "nc")
103 BUILTIN(__builtin_amdgcn_ldexp, "ddi", "nc")
H A Darm_sve.td1219 …def _ALL : SInst<name # "[_{d}]", "ddi", type.T, MergeNone, intrinsic, [IsInsertO…
2286 …def SVDUP_LANEQ_B : SInst<"svdup_laneq[_{d}]", "ddi", "cUc", MergeNone, "aarch64_sve_dup_laneq",…
2287 …def SVDUP_LANEQ_H : SInst<"svdup_laneq[_{d}]", "ddi", "sUsh", MergeNone, "aarch64_sve_dup_laneq"…
2288 …def SVDUP_LANEQ_S : SInst<"svdup_laneq[_{d}]", "ddi", "iUif", MergeNone, "aarch64_sve_dup_laneq"…
2289 …def SVDUP_LANEQ_D : SInst<"svdup_laneq[_{d}]", "ddi", "lUld", MergeNone, "aarch64_sve_dup_laneq"…
2293 …def SVDUP_LANEQ_BF16 : SInst<"svdup_laneq[_{d}]", "ddi", "b", MergeNone, "aarch64_sve_dup_laneq"…
/freebsd/sys/dev/usb/serial/
H A Duvscom.c35 * adapter. It supports DDI Pocket's Air H" C@rd, C@rd H" 64, NTT's P-in,
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DAssignmentTrackingAnalysis.cpp2272 for (auto *DDI : InstDeclares) in buildOverlapMapAndRecordDeclares() local
2273 FnVarLocs->addSingleLocVar(DebugVariable(DDI), DDI->getExpression(), in buildOverlapMapAndRecordDeclares()
2274 DDI->getDebugLoc(), DDI->getWrappedLocation()); in buildOverlapMapAndRecordDeclares()
H A DTwoAddressInstructionPass.cpp1081 DenseMap<MachineInstr*, unsigned>::iterator DDI = DistanceMap.find(&DefMI); in isDefTooClose() local
1082 if (DDI == DistanceMap.end()) in isDefTooClose()
1084 unsigned DefDist = DDI->second; in isDefTooClose()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DMergeFunctions.cpp659 } else if (auto *DDI = dyn_cast<DbgDeclareInst>(&*BI)) { in filterInstsUnrelatedToPDI() local
660 ExamineDbgDeclare(DDI, PDIRelated); in filterInstsUnrelatedToPDI()
/freebsd/sys/contrib/openzfs/module/os/freebsd/zfs/
H A Dzvol_os.c375 * That indicates a bug in the kernel / DDI framework. in zvol_geom_close()
1063 * That indicates a bug in the kernel / DDI framework. in zvol_cdev_close()
/freebsd/crypto/heimdal/appl/ftp/ftpd/
H A Dls.c252 /* Don't want to use the DDI/DKI crap. */ in make_fileinfo()

12