/freebsd/contrib/llvm-project/llvm/lib/Bitcode/Writer/ |
H A D | BitcodeWriterPass.cpp | 24 ScopedDbgInfoFormatSetter FormatSetter(M, M.IsNewDbgInfoFormat && in run() 26 if (M.IsNewDbgInfoFormat) in run() 58 M, M.IsNewDbgInfoFormat && WriteNewDbgInfoFormatToBitcode); in runOnModule() 59 if (M.IsNewDbgInfoFormat) in runOnModule()
|
/freebsd/contrib/llvm-project/llvm/lib/IR/ |
H A D | BasicBlock.cpp | 53 assert(IsNewDbgInfoFormat && in createMarker() 64 assert(IsNewDbgInfoFormat && in createMarker() 77 IsNewDbgInfoFormat = true; in convertToNewDbgValues() 117 IsNewDbgInfoFormat = false; in convertFromNewDbgValues() 153 if (NewFlag && !IsNewDbgInfoFormat) in setIsNewDbgInfoFormat() 155 else if (!NewFlag && IsNewDbgInfoFormat) in setIsNewDbgInfoFormat() 159 IsNewDbgInfoFormat = NewFlag; in setNewDbgInfoFormatFlag() 184 IsNewDbgInfoFormat(UseNewDbgInfoFormat), Parent(nullptr) { in BasicBlock() 195 setIsNewDbgInfoFormat(NewParent->IsNewDbgInfoFormat); in BasicBlock() 207 setIsNewDbgInfoFormat(NewParent->IsNewDbgInfoFormat); in insertInto() [all …]
|
H A D | Instruction.cpp | 86 if (!getParent()->IsNewDbgInfoFormat || !DebugMarker) in handleMarkerRemoval() 132 if (!BB.IsNewDbgInfoFormat) in insertBefore() 207 if (BB.IsNewDbgInfoFormat && DebugMarker && !Preserve) { in moveBeforeImpl() 219 if (BB.IsNewDbgInfoFormat && !Preserve) { in moveBeforeImpl() 239 assert(getParent()->IsNewDbgInfoFormat); in cloneDebugInfoFrom() 240 assert(getParent()->IsNewDbgInfoFormat == in cloneDebugInfoFrom() 241 From->getParent()->IsNewDbgInfoFormat); in cloneDebugInfoFrom()
|
H A D | Function.cpp | 89 IsNewDbgInfoFormat = true; in convertToNewDbgValues() 96 IsNewDbgInfoFormat = false; in convertFromNewDbgValues() 103 if (NewFlag && !IsNewDbgInfoFormat) in setIsNewDbgInfoFormat() 105 else if (!NewFlag && IsNewDbgInfoFormat) in setIsNewDbgInfoFormat() 112 IsNewDbgInfoFormat = NewFlag; in setNewDbgInfoFormatFlag() 485 NumArgs(Ty->getNumParams()), IsNewDbgInfoFormat(UseNewDbgInfoFormat) { in Function() 500 IsNewDbgInfoFormat = ParentModule->IsNewDbgInfoFormat; in Function()
|
H A D | DIBuilder.cpp | 980 if (M.IsNewDbgInfoFormat) { in insertDbgAssign() 1069 if (M.IsNewDbgInfoFormat) { in insertDbgValueIntrinsic() 1092 if (M.IsNewDbgInfoFormat) { in insertDeclare() 1168 if (M.IsNewDbgInfoFormat) { in insertLabel()
|
H A D | Verifier.cpp | 2763 CheckDI(F.IsNewDbgInfoFormat == F.getParent()->IsNewDbgInfoFormat, in visitFunction() 2765 F.IsNewDbgInfoFormat, F.getParent(), in visitFunction() 2766 F.getParent()->IsNewDbgInfoFormat); in visitFunction() 3111 CheckDI(BB.IsNewDbgInfoFormat == BB.getParent()->IsNewDbgInfoFormat, in visitBasicBlock() 3113 BB.IsNewDbgInfoFormat, BB.getParent(), in visitBasicBlock() 3114 BB.getParent()->IsNewDbgInfoFormat); in visitBasicBlock() 3117 if (BB.IsNewDbgInfoFormat) in visitBasicBlock()
|
H A D | Module.cpp | 77 IsNewDbgInfoFormat(UseNewDbgInfoFormat) { in Module()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/WebAssembly/ |
H A D | WebAssemblyAddMissingPrototypes.cpp | 139 NewF->IsNewDbgInfoFormat = F.IsNewDbgInfoFormat; in runOnModule()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/ |
H A D | Module.h | 219 bool IsNewDbgInfoFormat; 231 IsNewDbgInfoFormat = true; in convertToNewDbgValues() 239 IsNewDbgInfoFormat = false; in convertFromNewDbgValues() 243 if (UseNewFormat && !IsNewDbgInfoFormat) in setIsNewDbgInfoFormat() 245 else if (!UseNewFormat && IsNewDbgInfoFormat) in setIsNewDbgInfoFormat() 252 IsNewDbgInfoFormat = NewFlag; in setNewDbgInfoFormatFlag()
|
H A D | Function.h | 108 bool IsNewDbgInfoFormat; 747 BB->setIsNewDbgInfoFormat(IsNewDbgInfoFormat); in insert()
|
H A D | BasicBlock.h | 67 bool IsNewDbgInfoFormat; variable
|
H A D | DebugProgramInstruction.h | 681 : Obj(Obj), OldState(Obj.IsNewDbgInfoFormat) { in DEFINE_ISA_CONVERSION_FUNCTIONS()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
H A D | CloneModule.cpp | 64 New->IsNewDbgInfoFormat = M.IsNewDbgInfoFormat; in CloneModule()
|
H A D | CloneFunction.cpp | 49 NewBB->IsNewDbgInfoFormat = BB->IsNewDbgInfoFormat; in CloneBasicBlock() 99 NewFunc->setIsNewDbgInfoFormat(OldFunc->IsNewDbgInfoFormat); in CloneFunctionInto() 341 NewF->setIsNewDbgInfoFormat(F->IsNewDbgInfoFormat); in CloneFunction() 475 NewBB->IsNewDbgInfoFormat = BB->IsNewDbgInfoFormat; in CloneBlock() 499 if (!NewBB->IsNewDbgInfoFormat) in CloneBlock()
|
H A D | CodeExtractor.cpp | 771 NewBB->IsNewDbgInfoFormat = ExitBB->IsNewDbgInfoFormat; in severSplitPHINodesOfExits() 893 newFunction->IsNewDbgInfoFormat = oldFunction->IsNewDbgInfoFormat; in constructFunction() 1788 codeReplacer->IsNewDbgInfoFormat = oldFunction->IsNewDbgInfoFormat; in extractCodeRegion() 1794 newFuncRoot->IsNewDbgInfoFormat = oldFunction->IsNewDbgInfoFormat; in extractCodeRegion()
|
H A D | LoopRotationUtils.cpp | 638 if (LoopEntryBranch->getParent()->IsNewDbgInfoFormat && in rotateLoop() 665 if (LoopEntryBranch->getParent()->IsNewDbgInfoFormat && in rotateLoop()
|
H A D | BasicBlockUtils.cpp | 443 if (BB->IsNewDbgInfoFormat) in removeRedundantDbgInstrsUsingBackwardScan() 583 if (BB->IsNewDbgInfoFormat) in removeRedundantDbgInstrsUsingForwardScan() 647 if (BB->IsNewDbgInfoFormat) in removeUndefDbgAssignsFromEntryBlock()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/ |
H A D | MergeFunctions.cpp | 754 NewG->IsNewDbgInfoFormat = G->IsNewDbgInfoFormat; in writeThunk() 882 NewF->IsNewDbgInfoFormat = F->IsNewDbgInfoFormat; in mergeTwoFunctions()
|
H A D | ExpandVariadics.cpp | 510 NF->IsNewDbgInfoFormat = F.IsNewDbgInfoFormat; in replaceAllUsesWithNewDeclaration() 552 NF->IsNewDbgInfoFormat = F.IsNewDbgInfoFormat; in deriveFixedArityReplacement()
|
H A D | DeadArgumentElimination.cpp | 177 NF->IsNewDbgInfoFormat = F.IsNewDbgInfoFormat; in deleteDeadVarargs() 879 NF->IsNewDbgInfoFormat = F->IsNewDbgInfoFormat; in removeDeadStuffFromFunction()
|
H A D | ThinLTOBitcodeWriter.cpp | 584 ScopedDbgInfoFormatSetter FormatSetter(M, M.IsNewDbgInfoFormat && in run() 586 if (M.IsNewDbgInfoFormat) in run()
|
H A D | Attributor.cpp | 2742 Wrapper->IsNewDbgInfoFormat = M.IsNewDbgInfoFormat; in createShallowWrapper() 2824 Copied->IsNewDbgInfoFormat = F->IsNewDbgInfoFormat; in internalizeFunctions() 3043 NewFn->IsNewDbgInfoFormat = OldFn->IsNewDbgInfoFormat; in rewriteFunctionSignatures()
|
H A D | ArgumentPromotion.cpp | 165 NF->setIsNewDbgInfoFormat(F->IsNewDbgInfoFormat); in doPromotion()
|
/freebsd/contrib/llvm-project/llvm/tools/llvm-as/ |
H A D | llvm-as.cpp | 148 if (M->IsNewDbgInfoFormat) in main()
|
/freebsd/contrib/llvm-project/llvm/lib/Linker/ |
H A D | IRMover.cpp | 698 F->IsNewDbgInfoFormat = SF->IsNewDbgInfoFormat; in copyFunctionProto() 1139 assert(Src.IsNewDbgInfoFormat == Dst.IsNewDbgInfoFormat); in linkFunctionBody() 1550 ScopedDbgInfoFormatSetter FormatSetter(*SrcM, DstM.IsNewDbgInfoFormat); in run()
|