Home
last modified time | relevance | path

Searched refs:LoadStore (Results 1 – 8 of 8) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Target/NVPTX/
H A DNVPTX.h145 enum LoadStore { enum
/freebsd/contrib/llvm-project/llvm/lib/Target/PowerPC/GISel/
H A DPPCInstructionSelector.cpp759 MachineInstr *LoadStore = SelectLoadStoreAddressingMode(); in select() local
760 if (!LoadStore) in select()
763 return constrainSelectedInstRegOperands(*LoadStore, TII, TRI, RBI); in select()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DInstrProfiling.cpp892 for (const auto &LoadStore : PromotionCandidates) { in promoteCounterLoadStores() local
893 auto *CounterLoad = LoadStore.first; in promoteCounterLoadStores()
894 auto *CounterStore = LoadStore.second; in promoteCounterLoadStores()
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/GISel/
H A DAArch64InstructionSelector.cpp3142 MachineInstr *LoadStore = SelectLoadStoreAddressingMode(); in select() local
3143 if (!LoadStore) in select()
3149 LoadStore->getOperand(0).getReg(), MRI); in select()
3151 switch (LoadStore->getOpcode()) { in select()
3155 LoadStore->getOperand(0).setReg(AArch64::WZR); in select()
3158 LoadStore->getOperand(0).setReg(AArch64::XZR); in select()
3168 if (MRI.getType(LoadStore->getOperand(0).getReg()).getSizeInBits() != 64) in select()
3173 Register DstReg = LoadStore->getOperand(0).getReg(); in select()
3174 LoadStore->getOperand(0).setReg(LdReg); in select()
3176 MIB.setInsertPt(MIB.getMBB(), std::next(LoadStore->getIterator())); in select()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/SPIRV/
H A DSPIRVBuiltins.td59 def LoadStore : BuiltinGroup;
689 defm : DemangledNativeBuiltin<"__spirv_Load", OpenCL_std, LoadStore, 1, 3, OpLoad>;
690 defm : DemangledNativeBuiltin<"__spirv_Store", OpenCL_std, LoadStore, 2, 4, OpStore>;
H A DSPIRVBuiltins.cpp2790 case SPIRV::LoadStore: in mapBuiltinToOpcode()
2918 case SPIRV::LoadStore: in lowerBuiltin()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp1127 if (auto *LoadStore = dyn_cast<MemSDNode>(Node); in reassociationCanBreakAddressingModePattern() local
1128 LoadStore && LoadStore->getBasePtr().getNode() == N) { in reassociationCanBreakAddressingModePattern()
1132 EVT VT = LoadStore->getMemoryVT(); in reassociationCanBreakAddressingModePattern()
1133 unsigned AS = LoadStore->getAddressSpace(); in reassociationCanBreakAddressingModePattern()
1165 if (auto *LoadStore = dyn_cast<MemSDNode>(Node)) { in reassociationCanBreakAddressingModePattern() local
1172 EVT VT = LoadStore->getMemoryVT(); in reassociationCanBreakAddressingModePattern()
1173 unsigned AS = LoadStore->getAddressSpace(); in reassociationCanBreakAddressingModePattern()
1190 auto *LoadStore = dyn_cast<MemSDNode>(Node); in reassociationCanBreakAddressingModePattern() local
1191 if (!LoadStore) in reassociationCanBreakAddressingModePattern()
1199 EVT VT = LoadStore->getMemoryVT(); in reassociationCanBreakAddressingModePattern()
[all …]
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DOpenCLBuiltins.td1190 …var extension_fp16 = !cast<FunctionExtension>("FuncExtFloatAtomicsFp16" # addrspace # "LoadStore");