Searched refs:DbgVal (Results 1 – 5 of 5) sorted by relevance
/external/swiftshader/third_party/LLVM/lib/Transforms/Utils/ |
D | Local.cpp | 800 Instruction *DbgVal = NULL; in ConvertDebugDeclareToDebugValue() local 809 DbgVal = Builder.insertDbgValueIntrinsic(ExtendedArg, 0, DIVar, SI); in ConvertDebugDeclareToDebugValue() 811 DbgVal = Builder.insertDbgValueIntrinsic(SI->getOperand(0), 0, DIVar, SI); in ConvertDebugDeclareToDebugValue() 816 DbgVal->setDebugLoc(SIDL); in ConvertDebugDeclareToDebugValue() 819 DbgVal->setDebugLoc(DDI->getDebugLoc()); in ConvertDebugDeclareToDebugValue() 831 Instruction *DbgVal = in ConvertDebugDeclareToDebugValue() local 838 DbgVal->setDebugLoc(LIDL); in ConvertDebugDeclareToDebugValue() 841 DbgVal->setDebugLoc(DDI->getDebugLoc()); in ConvertDebugDeclareToDebugValue()
|
/external/swiftshader/third_party/LLVM/lib/Transforms/IPO/ |
D | StripSymbols.cpp | 252 if (Function *DbgVal = M.getFunction("llvm.dbg.value")) { in StripDebugInfo() local 253 while (!DbgVal->use_empty()) { in StripDebugInfo() 254 CallInst *CI = cast<CallInst>(DbgVal->use_back()); in StripDebugInfo() 257 DbgVal->eraseFromParent(); in StripDebugInfo()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/IR/ |
D | DebugInfo.cpp | 596 if (auto *DbgVal = M.getFunction(Name)) { in stripNonLineTableDebugInfo() local 597 while (!DbgVal->use_empty()) in stripNonLineTableDebugInfo() 598 cast<Instruction>(DbgVal->user_back())->eraseFromParent(); in stripNonLineTableDebugInfo() 599 DbgVal->eraseFromParent(); in stripNonLineTableDebugInfo()
|
/external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/ |
D | ScalarReplAggregates.cpp | 980 Instruction *DbgVal = NULL; in updateDebugInfo() local 989 DbgVal = DIB->insertDbgValueIntrinsic(ExtendedArg, 0, in updateDebugInfo() 993 DbgVal = DIB->insertDbgValueIntrinsic(SI->getOperand(0), 0, in updateDebugInfo() 996 DbgVal->setDebugLoc(DVI->getDebugLoc()); in updateDebugInfo() 998 Instruction *DbgVal = in updateDebugInfo() local 1001 DbgVal->setDebugLoc(DVI->getDebugLoc()); in updateDebugInfo()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/SelectionDAG/ |
D | FastISel.cpp | 307 for (MachineInstr &DbgVal : MRI.use_instructions(DefReg)) { in sinkLocalValueMaterialization() 308 if (!DbgVal.isDebugValue()) in sinkLocalValueMaterialization() 310 unsigned UseOrder = OrderMap.Orders[&DbgVal]; in sinkLocalValueMaterialization() 312 DbgValues.push_back(&DbgVal); in sinkLocalValueMaterialization()
|