Searched refs:OpLoad (Results 1 – 6 of 6) sorted by relevance
/openbsd/gnu/llvm/llvm/lib/Target/SPIRV/MCTargetDesc/ |
H A D | SPIRVInstPrinter.cpp | 124 case SPIRV::OpLoad: in printInst()
|
/openbsd/gnu/llvm/llvm/lib/Target/SPIRV/ |
H A D | SPIRVInstrInfo.td | 256 def OpLoad: Op<61, (outs ID:$res), (ins TYPE:$resType, ID:$pointer, variable_ops), 257 "$res = OpLoad $resType $pointer">;
|
H A D | SPIRVBuiltins.cpp | 1663 MIRBuilder.buildInstr(SPIRV::OpLoad) in generateEnqueueInst() 1810 bool IsLoad = Opcode == SPIRV::OpLoad; in generateLoadStoreInst()
|
H A D | SPIRVInstructionSelector.cpp | 596 auto MIB = BuildMI(*I.getParent(), I, I.getDebugLoc(), TII.get(SPIRV::OpLoad)) in selectLoad()
|
H A D | SPIRVBuiltins.td | 565 defm : DemangledNativeBuiltin<"__spirv_Load", OpenCL_std, LoadStore, 1, 3, OpLoad>;
|
/openbsd/gnu/llvm/llvm/lib/CodeGen/ |
H A D | CodeGenPrepare.cpp | 6150 } else if (auto *OpLoad = dyn_cast<LoadInst>(V)) { in optimizePhiType() local 6151 if (!OpLoad->isSimple()) in optimizePhiType() 6153 if (Defs.insert(OpLoad).second) in optimizePhiType() 6154 Worklist.push_back(OpLoad); in optimizePhiType()
|