/freebsd/sys/contrib/device-tree/Bindings/display/connector/ |
H A D | dvi-connector.txt | 1 DVI Connector 9 - ddc-i2c-bus: phandle to the i2c bus that is connected to DVI DDC 10 - analog: the connector has DVI analog pins 11 - digital: the connector has DVI digital pins 12 - dual-link: the connector has pins for DVI dual-link 16 - Video port for DVI input
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
H A D | MachineDebugify.cpp | 73 auto *DVI = dyn_cast<DbgValueInst>(U.getUser()); in applyDebugifyMetadataToMachineFunction() local 74 if (!DVI || DVI->getFunction() != &F) in applyDebugifyMetadataToMachineFunction() 76 unsigned Line = DVI->getDebugLoc().getLine(); in applyDebugifyMetadataToMachineFunction() 78 Line2Var[Line] = DVI->getVariable(); in applyDebugifyMetadataToMachineFunction() 80 EarliestDVI = DVI; in applyDebugifyMetadataToMachineFunction() 81 Expr = DVI->getExpression(); in applyDebugifyMetadataToMachineFunction()
|
H A D | AssignmentTrackingAnalysis.cpp | 1515 DbgAssignIntrinsic *CastToDbgAssign(DbgVariableIntrinsic *DVI) { in CastToDbgAssign() argument 1516 return cast<DbgAssignIntrinsic>(DVI); in CastToDbgAssign() 1851 auto *DVI = dyn_cast<DbgVariableIntrinsic>(&I); in processDbgInstruction() local 1852 if (!DVI) in processDbgInstruction() 1856 if (hasZeroSizedFragment(*DVI)) in processDbgInstruction() 1861 else if (auto *DVI = dyn_cast<DbgValueInst>(&I)) in processDbgInstruction() local 1862 processDbgValue(DVI, LiveSet); in processDbgInstruction() 2125 DbgDeclareInst *DynCastToDbgDeclare(DbgVariableIntrinsic *DVI) { in DynCastToDbgDeclare() argument 2126 return dyn_cast<DbgDeclareInst>(DVI); in DynCastToDbgDeclare() 2475 auto *DVI = dyn_cast<DbgValueInst>(&I); in emitPromotedVarLocs() local [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/IR/ |
H A D | DebugProgramInstruction.cpp | 31 DbgVariableRecord::DbgVariableRecord(const DbgVariableIntrinsic *DVI) in DbgVariableRecord() argument 32 : DbgRecord(ValueKind, DVI->getDebugLoc()), in DbgVariableRecord() 33 DebugValueUser({DVI->getRawLocation(), nullptr, nullptr}), in DbgVariableRecord() 34 Variable(DVI->getVariable()), Expression(DVI->getExpression()), 36 switch (DVI->getIntrinsicID()) { 46 static_cast<const DbgAssignIntrinsic *>(DVI); 431 DbgVariableIntrinsic *DVI; in createDebugIntrinsic() local 442 DVI = cast<DbgVariableIntrinsic>(CallInst::Create( in createDebugIntrinsic() 448 DVI = cast<DbgVariableIntrinsic>( in createDebugIntrinsic() 451 DVI->setTailCall(); in createDebugIntrinsic() [all …]
|
H A D | TypeFinder.cpp | 95 if (const DbgVariableRecord *DVI = in run() local 97 for (Value *V : DVI->location_ops()) in run() 99 if (DVI->isDbgAssign()) { in run() 100 if (Value *Addr = DVI->getAddress()) in run()
|
H A D | User.cpp | 36 if (auto DVI = dyn_cast_or_null<DbgVariableIntrinsic>(this)) { in replaceUsesOfWith() local 37 if (is_contained(DVI->location_ops(), From)) { in replaceUsesOfWith() 38 DVI->replaceVariableLocationOp(From, To); in replaceUsesOfWith()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
H A D | MemoryTaggingSupport.cpp | 160 if (auto *DVI = dyn_cast<DbgVariableIntrinsic>(&Inst)) { in visit() local 167 if (DVIVec.empty() || DVIVec.back() != DVI) in visit() 168 DVIVec.push_back(DVI); in visit() 171 for_each(DVI->location_ops(), AddIfInteresting); in visit() 172 if (auto *DAI = dyn_cast<DbgAssignIntrinsic>(DVI)) in visit() 289 static DbgAssignIntrinsic *DynCastToDbgAssign(DbgVariableIntrinsic *DVI) { in DynCastToDbgAssign() argument 290 return dyn_cast<DbgAssignIntrinsic>(DVI); in DynCastToDbgAssign()
|
H A D | BasicBlockUtils.cpp | 449 if (DbgValueInst *DVI = dyn_cast<DbgValueInst>(&I)) { in removeRedundantDbgInstrsUsingBackwardScan() local 450 DebugVariable Key(DVI->getVariable(), in removeRedundantDbgInstrsUsingBackwardScan() 451 DVI->getExpression(), in removeRedundantDbgInstrsUsingBackwardScan() 452 DVI->getDebugLoc()->getInlinedAt()); in removeRedundantDbgInstrsUsingBackwardScan() 459 if (auto *DAI = dyn_cast<DbgAssignIntrinsic>(DVI)) { in removeRedundantDbgInstrsUsingBackwardScan() 469 ToBeRemoved.push_back(DVI); in removeRedundantDbgInstrsUsingBackwardScan() 590 if (DbgValueInst *DVI = dyn_cast<DbgValueInst>(&I)) { in removeRedundantDbgInstrsUsingForwardScan() local 591 DebugVariable Key(DVI->getVariable(), std::nullopt, in removeRedundantDbgInstrsUsingForwardScan() 592 DVI->getDebugLoc()->getInlinedAt()); in removeRedundantDbgInstrsUsingForwardScan() 594 auto *DAI = dyn_cast<DbgAssignIntrinsic>(DVI); in removeRedundantDbgInstrsUsingForwardScan() [all …]
|
H A D | Debugify.cpp | 356 if (auto *DVI = dyn_cast<DbgVariableIntrinsic>(&I)) in collectDebugInfoMetadata() local 357 HandleDbgVariable(DVI); in collectDebugInfoMetadata() 602 if (auto *DVI = dyn_cast<DbgVariableIntrinsic>(&I)) in checkDebugInfoMetadata() local 603 HandleDbgVariable(DVI); in checkDebugInfoMetadata() 778 auto *DVI = dyn_cast<DbgValueInst>(&I); in checkDebugifyMetadata() local 779 if (!DVI) in checkDebugifyMetadata() 781 CheckForMisSized(DVI); in checkDebugifyMetadata()
|
H A D | LCSSA.cpp | 249 for (auto *DVI : DbgValues) { in formLCSSAForInstructions() local 250 BasicBlock *UserBB = DVI->getParent(); in formLCSSAForInstructions() 259 DVI->replaceVariableLocationOp(I, V); in formLCSSAForInstructions()
|
H A D | CodeExtractor.cpp | 1532 for (DbgVariableIntrinsic *DVI : DbgUsers) in eraseDebugIntrinsicsWithNonLocalRefs() 1533 if (DVI->getFunction() != &F) in eraseDebugIntrinsicsWithNonLocalRefs() 1534 DVI->eraseFromParent(); in eraseDebugIntrinsicsWithNonLocalRefs() 1660 auto *DVI = cast<DbgVariableIntrinsic>(DII); in fixupDebugInfoPostExtraction() local 1662 if (any_of(DVI->location_ops(), IsInvalidLocation)) { in fixupDebugInfoPostExtraction() 1663 DebugIntrinsicsToDelete.push_back(DVI); in fixupDebugInfoPostExtraction() 1667 if (auto *DAI = dyn_cast<DbgAssignIntrinsic>(DVI); in fixupDebugInfoPostExtraction() 1669 DebugIntrinsicsToDelete.push_back(DVI); in fixupDebugInfoPostExtraction() 1674 if (!DVI->getDebugLoc().getInlinedAt()) in fixupDebugInfoPostExtraction() 1675 DVI->setVariable(GetUpdatedDIVariable(DVI->getVariable())); in fixupDebugInfoPostExtraction()
|
H A D | MemoryOpRemark.cpp | 324 auto FindDI = [&](const auto *DVI) { in visitVariable() argument 325 if (DILocalVariable *DILV = DVI->getVariable()) { in visitVariable()
|
/freebsd/sys/contrib/device-tree/src/arm/nxp/imx/ |
H A D | imx25-eukrea-mbimxsd25-baseboard-dvi-vga.dts | 9 model = "Eukrea MBIMXSD25 with the DVI-VGA Display"; 13 model = "DVI-VGA";
|
H A D | imx25-eukrea-mbimxsd25-baseboard-dvi-svga.dts | 9 model = "Eukrea MBIMXSD25 with the DVI-SVGA Display"; 13 model = "DVI-SVGA";
|
/freebsd/sys/contrib/device-tree/src/arm/marvell/ |
H A D | dove-sbc-a510.dts | 50 * 0.2 DVI transmitter TI TFP410 MSEN 51 * 0.3 DVI transmitter TI TFP410 PD# (active low power down) 117 * - DVI transmitter TI TFP410, 0x39 118 * - HDMI/DVI DDC channel 129 /* TI TFP410 DVI transmitter */
|
/freebsd/sys/contrib/device-tree/Bindings/display/ti/ |
H A D | ti,omap-dss.txt | 86 The Panda board has a DVI and a HDMI connector, and the board contains a TFP410 87 chip (MIPI DPI to DVI encoder) and a TPD12S015 chip (HDMI ESD protection & level 90 DSS Core --(MIPI DPI)--> TFP410 --(DVI)--> DVI Connector
|
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/ |
H A D | DebugInfo.h | 111 void processVariable(const Module &M, const DILocalVariable *DVI); 285 VarRecord(DbgVariableIntrinsic *DVI) in VarRecord() 286 : Var(DVI->getVariable()), DL(getDebugValueLoc(DVI)) {} in VarRecord()
|
/freebsd/sys/contrib/device-tree/Bindings/display/bridge/ |
H A D | ti,tfp410.txt | 1 TFP410 DPI to DVI encoder 30 - Port 1 is the DVI output port. Its endpoint subnode shall contain a
|
/freebsd/contrib/file/magic/Magdir/ |
H A D | tex | 6 # XXX - needs byte-endian stuff (big-endian and little-endian DVI?) 10 # Although we may know the offset of certain text fields in TeX DVI 15 >>14 pstring >\0 TeX DVI file (%s)
|
H A D | troff | 34 >4 search/1 dvi for DVI
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Coroutines/ |
H A D | CoroFrame.cpp | 2012 for (auto *DVI : DIs) in insertSpills() local 2013 DVI->replaceUsesOfWith(Alloca, G); in insertSpills() 2952 DbgVariableIntrinsic &DVI, bool OptimizeFrame, bool UseEntryValue) { in salvageDebugInfo() argument 2954 Function *F = DVI.getFunction(); in salvageDebugInfo() 2957 bool SkipOutermostLoad = !isa<DbgValueInst>(DVI); in salvageDebugInfo() 2958 Value *OriginalStorage = DVI.getVariableLocationOp(0); in salvageDebugInfo() 2962 DVI.getExpression(), SkipOutermostLoad); in salvageDebugInfo() 2969 DVI.replaceVariableLocationOp(OriginalStorage, Storage); in salvageDebugInfo() 2970 DVI.setExpression(Expr); in salvageDebugInfo() 2974 if (isa<DbgDeclareInst>(DVI)) { in salvageDebugInfo() [all …]
|
H A D | CoroSplit.cpp | 720 if (auto *DVI = dyn_cast<DbgVariableIntrinsic>(&I)) in collectDbgVariableIntrinsics() local 721 Intrinsics.push_back(DVI); in collectDbgVariableIntrinsics() 737 for (DbgVariableIntrinsic *DVI : Worklist) in salvageDebugInfo() 738 coro::salvageDebugInfo(ArgToAllocaMap, *DVI, Shape.OptimizeFrame, in salvageDebugInfo() 751 auto RemoveOne = [&](auto *DVI) { in salvageDebugInfo() argument 752 if (IsUnreachableBlock(DVI->getParent())) in salvageDebugInfo() 753 DVI->eraseFromParent(); in salvageDebugInfo() 754 else if (isa_and_nonnull<AllocaInst>(DVI->getVariableLocationOp(0))) { in salvageDebugInfo() 757 for (auto *User : DVI->getVariableLocationOp(0)->users()) in salvageDebugInfo() 762 DVI->eraseFromParent(); in salvageDebugInfo()
|
/freebsd/contrib/llvm-project/llvm/tools/llvm-dis/ |
H A D | llvm-dis.cpp | 129 else if (const DbgValueInst *DVI = dyn_cast<DbgValueInst>(I)) { in printInfoComment() local 134 OS << " [debug variable = " << DVI->getVariable()->getName() << "]"; in printInfoComment()
|
/freebsd/sys/contrib/device-tree/Bindings/powerpc/fsl/ |
H A D | diu.txt | 4 drive DVI monitors.
|
/freebsd/sys/contrib/device-tree/Bindings/display/ |
H A D | sm501fb.txt | 4 drive DVI monitors.
|