| /freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
| H A D | PromoteMemoryToRegister.cpp | 108 (void)DIB; in createDebugValue() 145 updateForDeletedStore(StoreInst *ToDelete, DIBuilder &DIB, in updateForDeletedStore() argument 183 ConvertDebugDeclareToDebugValue(Assign, ToDelete, DIB); in updateForDeletedStore() 191 void updateForNewPhi(PHINode *NewPhi, DIBuilder &DIB) const { in updateForNewPhi() 196 ConvertDebugDeclareToDebugValue(DAI, NewPhi, DIB); in updateForNewPhi() 198 ConvertDebugDeclareToDebugValue(DPV, NewPhi, DIB); in updateForNewPhi() 348 DIBuilder DIB; member 570 DIBuilder DIB(*AI->getModule(), /*AllowUnresolved*/ false); in rewriteSingleStoreAlloca() local 682 DIBuilder DIB(*AI->getModule(), /*AllowUnresolved*/ false); in promoteSingleBlockAlloca() local 692 ConvertDebugDeclareToDebugValue(DbgItem, SI, DIB); in promoteSingleBlockAlloca() [all …]
|
| H A D | Debugify.cpp | 83 std::function<bool(DIBuilder &DIB, Function &F)> ApplyToMF) { in applyDebugifyMetadata() argument 90 DIBuilder DIB(M); in applyDebugifyMetadata() local 101 DTy = DIB.createBasicType(Name, Size, dwarf::DW_ATE_unsigned); in applyDebugifyMetadata() 108 auto File = DIB.createFile(M.getName(), "/"); in applyDebugifyMetadata() 109 auto CU = DIB.createCompileUnit(dwarf::DW_LANG_C, File, "debugify", in applyDebugifyMetadata() 119 DIB.createSubroutineType(DIB.getOrCreateTypeArray(std::nullopt)); in applyDebugifyMetadata() 137 auto LocalVar = DIB.createAutoVariable(SP, Name, File, Loc->getLine(), in applyDebugifyMetadata() 140 DIB.insertDbgValueIntrinsic(V, LocalVar, DIB.createExpression(), Loc, in applyDebugifyMetadata() 192 ApplyToMF(DIB, F); in applyDebugifyMetadata() 193 DIB.finalizeSubprogram(SP); in applyDebugifyMetadata() [all …]
|
| H A D | CodeExtractor.cpp | 1542 DIBuilder DIB(*OldFunc.getParent(), /*AllowUnresolved=*/false, in fixupDebugInfoPostExtraction() local 1545 DIB.createSubroutineType(DIB.getOrCreateTypeArray(std::nullopt)); in fixupDebugInfoPostExtraction() 1549 auto NewSP = DIB.createFunction( in fixupDebugInfoPostExtraction() 1580 NewVar = DIB.createAutoVariable( in fixupDebugInfoPostExtraction() 1653 DIB.finalizeSubprogram(NewSP); in fixupDebugInfoPostExtraction()
|
| H A D | Local.cpp | 1907 DIBuilder DIB(*F.getParent(), /*AllowUnresolved*/ false); in LowerDbgDeclare() local 1954 ConvertDebugDeclareToDebugValue(DDI, SI, DIB); in LowerDbgDeclare() 1956 ConvertDebugDeclareToDebugValue(DDI, LI, DIB); in LowerDbgDeclare() 1965 insertDbgValueOrDPValue(DIB, AI, DDI->getVariable(), DerefExpr, in LowerDbgDeclare() 3580 DIExpression *llvm::getExpressionForConstant(DIBuilder &DIB, const Constant &C, in getExpressionForConstant() argument 3583 auto createIntegerExpression = [&DIB](const Constant &CV) -> DIExpression * { in getExpressionForConstant() 3586 return InitIntOpt ? DIB.createConstantValueExpression( in getExpressionForConstant() 3597 return DIB.createConstantValueExpression( in getExpressionForConstant() 3605 return DIB.createConstantValueExpression(0); in getExpressionForConstant()
|
| H A D | LoopUtils.cpp | 664 DIBuilder DIB(*ExitBlock->getModule()); in deleteDeadLoop() local
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/ |
| H A D | MachineDebugify.cpp | 34 DIBuilder &DIB, Function &F) { in applyDebugifyMetadataToMachineFunction() argument 181 "ModuleDebugify: ", [&](DIBuilder &DIB, Function &F) -> bool { in runOnModule() argument 182 return applyDebugifyMetadataToMachineFunction(MMI, DIB, F); in runOnModule()
|
| H A D | SafeStack.cpp | 494 DIBuilder DIB(*F.getParent()); in moveStaticAllocasToUnsafeStack() local 588 replaceDbgDeclare(Arg, BasePointer, DIB, DIExpression::ApplyOffset, in moveStaticAllocasToUnsafeStack() 600 replaceDbgDeclare(AI, BasePointer, DIB, DIExpression::ApplyOffset, -Offset); in moveStaticAllocasToUnsafeStack() 601 replaceDbgValueForAlloca(AI, BasePointer, DIB, -Offset); in moveStaticAllocasToUnsafeStack() 657 DIBuilder DIB(*F.getParent()); in moveDynamicAllocasToUnsafeStack() local 693 replaceDbgDeclare(AI, NewAI, DIB, DIExpression::ApplyOffset, 0); in moveDynamicAllocasToUnsafeStack()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/IPO/ |
| H A D | SCCP.cpp | 381 DIBuilder DIB(M); in runIPSCCP() local 383 DIB, *GV->getInitializer(), *GV->getValueType())) in runIPSCCP()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
| H A D | SROA.cpp | 327 static DPValue *createLinkedAssign(DPValue *, DIBuilder &DIB, in createLinkedAssign() argument 333 (void)DIB; in createLinkedAssign() 339 DbgAssignIntrinsic *, DIBuilder &DIB, Instruction *LinkedInstr, in createLinkedAssign() argument 342 return DIB.insertDbgAssign(LinkedInstr, NewValue, Variable, Expression, in createLinkedAssign() 398 DIBuilder DIB(*OldInst->getModule(), /*AllowUnresolved*/ false); in migrateDebugInfo() local 4924 static void insertNewDbgInst(DIBuilder &DIB, DbgDeclareInst *Orig, in insertNewDbgInst() argument 4927 DIB.insertDeclare(NewAddr, Orig->getVariable(), NewFragmentExpr, in insertNewDbgInst() 4930 static void insertNewDbgInst(DIBuilder &DIB, DbgAssignIntrinsic *Orig, in insertNewDbgInst() argument 4938 auto *NewAssign = DIB.insertDbgAssign( in insertNewDbgInst() 4947 (void)DIB; in insertNewDbgInst() [all …]
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/ |
| H A D | Local.h | 471 DIExpression *getExpressionForConstant(DIBuilder &DIB, const Constant &C,
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/IR/ |
| H A D | DebugInfo.cpp | 2070 DIBuilder &DIB) { in emitDbgAssign() argument 2116 auto *Assign = DIB.insertDbgAssign(&StoreLikeInst, Val, VarRec.Var, Expr, in emitDbgAssign() 2137 DIBuilder DIB(Module, /*AllowUnresolved*/ false); in trackAssignments() local 2207 emitDbgAssign(*Info, ValueComponent, DestComponent, I, R, DIB); in trackAssignments()
|
| /freebsd-14.2/contrib/file/magic/Magdir/ |
| H A D | riff | 440 >>>>>>>(104.l+132) string/c cwlt Microsoft Color WLT DIB 448 >>>>>>>(104.l+132) string/c gwlt Microsoft Greyscale WLT DIB 527 >>>>>>>(104.l+132) string/c vdct Video Maker Pro DIB
|
| H A D | msdos | 1589 # Note: similar to Windows CURsor. container for BMP (only DIB part) or PNG 1602 # skip remaining worksheets, because valid only for DIB image (40) or PNG image (\x89PNG) 1649 # offset of PNG or DIB image 1655 # DIB image 1662 # Note: similar to Windows ICOn. container for BMP ( only DIB part)
|
| H A D | images | 797 # Note: variant starting direct with DIB header see 896 >14 ulelong 48 PC bitmap, OS/2 2.x format (DIB header size=48) 897 >14 ulelong 24 PC bitmap, OS/2 2.x format (DIB header size=24) 900 >14 ulelong 16 PC bitmap, OS/2 2.x format (DIB header size=16)
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/InstCombine/ |
| H A D | InstructionCombining.cpp | 2850 std::unique_ptr<DIBuilder> DIB; in visitAllocSite() local 2853 DIB.reset(new DIBuilder(*MI.getModule(), /*AllowUnresolved=*/false)); in visitAllocSite() 2891 ConvertDebugDeclareToDebugValue(DVI, SI, *DIB); in visitAllocSite() 2894 ConvertDebugDeclareToDebugValue(DPV, SI, *DIB); in visitAllocSite()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/ |
| H A D | AddressSanitizer.cpp | 915 DIBuilder DIB; member 952 : F(F), ASan(ASan), DIB(*F.getParent(), /*AllowUnresolved*/ false), in FunctionStackPoisoner() 3463 replaceDbgDeclare(AI, LocalStackBaseAllocaPtr, DIB, DIExprFlags, in processStaticAllocas()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | CGDebugInfo.cpp | 2922 llvm::DIBuilder DIB(CGM.getModule()); in getOrCreateModuleRef() local 2931 DIB.createCompileUnit( in getOrCreateModuleRef() 2934 DIB.createFile(Mod.getModuleName(), TheCU->getDirectory()), in getOrCreateModuleRef() 2937 DIB.finalize(); in getOrCreateModuleRef()
|
| /freebsd-14.2/crypto/heimdal/lib/wind/ |
| H A D | NormalizationTest.txt | 4662 B525;B525;1103 1175 11B8;B525;1103 1175 11B8; # (딥; 딥; 딥; 딥; 딥; ) HANGUL SYLLABLE DIB
|