Home
last modified time | relevance | path

Searched refs:newLoad (Results 1 – 13 of 13) sorted by relevance

/external/deqp-deps/SPIRV-Tools/source/opt/
Dcommon_uniform_elim_pass.cpp222 std::unique_ptr<Instruction> newLoad(new Instruction( in GenACLoadRepl() local
224 get_def_use_mgr()->AnalyzeInstDefUse(&*newLoad); in GenACLoadRepl()
225 newInsts->emplace_back(std::move(newLoad)); in GenACLoadRepl()
383 std::unique_ptr<Instruction> newLoad(new Instruction( in CommonUniformLoadElimination() local
386 get_def_use_mgr()->AnalyzeInstDefUse(&*newLoad); in CommonUniformLoadElimination()
387 insertItr = insertItr.InsertBefore(std::move(newLoad)); in CommonUniformLoadElimination()
Dscalar_replacement_pass.cpp146 std::unique_ptr<Instruction> newLoad( in ReplaceWholeLoad() local
154 newLoad->AddOperand(std::move(copy)); in ReplaceWholeLoad()
156 where = where.InsertBefore(std::move(newLoad)); in ReplaceWholeLoad()
Dinline_pass.cpp93 std::unique_ptr<Instruction> newLoad( in AddLoad() local
96 (*block_ptr)->AddInstruction(std::move(newLoad)); in AddLoad()
/external/swiftshader/third_party/SPIRV-Tools/source/opt/
Dcommon_uniform_elim_pass.cpp222 std::unique_ptr<Instruction> newLoad(new Instruction( in GenACLoadRepl() local
224 get_def_use_mgr()->AnalyzeInstDefUse(&*newLoad); in GenACLoadRepl()
225 newInsts->emplace_back(std::move(newLoad)); in GenACLoadRepl()
388 std::unique_ptr<Instruction> newLoad(new Instruction( in CommonUniformLoadElimination() local
391 get_def_use_mgr()->AnalyzeInstDefUse(&*newLoad); in CommonUniformLoadElimination()
392 insertItr = insertItr.InsertBefore(std::move(newLoad)); in CommonUniformLoadElimination()
Dscalar_replacement_pass.cpp146 std::unique_ptr<Instruction> newLoad( in ReplaceWholeLoad() local
154 newLoad->AddOperand(std::move(copy)); in ReplaceWholeLoad()
156 where = where.InsertBefore(std::move(newLoad)); in ReplaceWholeLoad()
Dinline_pass.cpp97 std::unique_ptr<Instruction> newLoad( in AddLoad() local
100 (*block_ptr)->AddInstruction(std::move(newLoad)); in AddLoad()
/external/swiftshader/third_party/LLVM/lib/Transforms/IPO/
DArgumentPromotion.cpp708 LoadInst *newLoad = new LoadInst(V, V->getName()+".val", Call); in DoPromotion() local
709 newLoad->setAlignment(OrigLoad->getAlignment()); in DoPromotion()
711 newLoad->setMetadata(LLVMContext::MD_tbaa, in DoPromotion()
713 Args.push_back(newLoad); in DoPromotion()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/IPO/
DArgumentPromotion.cpp301 LoadInst *newLoad = new LoadInst(V, V->getName() + ".val", Call); in doPromotion() local
302 newLoad->setAlignment(OrigLoad->getAlignment()); in doPromotion()
306 newLoad->setAAMetadata(AAInfo); in doPromotion()
308 Args.push_back(newLoad); in doPromotion()
/external/llvm/lib/Transforms/IPO/
DArgumentPromotion.cpp848 LoadInst *newLoad = new LoadInst(V, V->getName()+".val", Call); in DoPromotion() local
849 newLoad->setAlignment(OrigLoad->getAlignment()); in DoPromotion()
853 newLoad->setAAMetadata(AAInfo); in DoPromotion()
855 Args.push_back(newLoad); in DoPromotion()
/external/llvm/lib/CodeGen/SelectionDAG/
DTargetLowering.cpp3263 SDValue newLoad = DAG.getLoad(intVT, dl, Chain, Ptr, in expandUnalignedLoad() local
3265 SDValue Result = DAG.getNode(ISD::BITCAST, dl, LoadedVT, newLoad); in expandUnalignedLoad()
3270 return std::make_pair(Result, newLoad.getValue(1)); in expandUnalignedLoad()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/SelectionDAG/
DTargetLowering.cpp4002 SDValue newLoad = DAG.getLoad(intVT, dl, Chain, Ptr, in expandUnalignedLoad() local
4004 SDValue Result = DAG.getNode(ISD::BITCAST, dl, LoadedVT, newLoad); in expandUnalignedLoad()
4009 return std::make_pair(Result, newLoad.getValue(1)); in expandUnalignedLoad()
/external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
DLegalizeDAG.cpp508 SDValue newLoad = DAG.getLoad(intVT, dl, Chain, Ptr, LD->getPointerInfo(), in ExpandUnalignedLoad() local
511 SDValue Result = DAG.getNode(ISD::BITCAST, dl, LoadedVT, newLoad); in ExpandUnalignedLoad()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/ARM/
DARMISelLowering.cpp7408 SDValue newLoad = SkipLoadExtensionForVMULL(LD, DAG); in SkipExtensionForVMULL() local
7409 DAG.ReplaceAllUsesOfValueWith(SDValue(LD, 1), newLoad.getValue(1)); in SkipExtensionForVMULL()
7412 DAG.getNode(Opcode, SDLoc(newLoad), LD->getValueType(0), newLoad); in SkipExtensionForVMULL()
7415 return newLoad; in SkipExtensionForVMULL()