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.h102 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.cpp881 for (const auto &LoadStore : PromotionCandidates) { in promoteCounterLoadStores() local
882 auto *CounterLoad = LoadStore.first; in promoteCounterLoadStores()
883 auto *CounterStore = LoadStore.second; in promoteCounterLoadStores()
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/GISel/
H A DAArch64InstructionSelector.cpp3007 MachineInstr *LoadStore = SelectLoadStoreAddressingMode(); in select() local
3008 if (!LoadStore) in select()
3014 LoadStore->getOperand(0).getReg(), MRI); in select()
3016 switch (LoadStore->getOpcode()) { in select()
3020 LoadStore->getOperand(0).setReg(AArch64::WZR); in select()
3023 LoadStore->getOperand(0).setReg(AArch64::XZR); in select()
3033 if (MRI.getType(LoadStore->getOperand(0).getReg()).getSizeInBits() != 64) in select()
3038 Register DstReg = LoadStore->getOperand(0).getReg(); in select()
3039 LoadStore->getOperand(0).setReg(LdReg); in select()
3041 MIB.setInsertPt(MIB.getMBB(), std::next(LoadStore->getIterator())); in select()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/SPIRV/
H A DSPIRVBuiltins.td58 def LoadStore : BuiltinGroup;
667 defm : DemangledNativeBuiltin<"__spirv_Load", OpenCL_std, LoadStore, 1, 3, OpLoad>;
668 defm : DemangledNativeBuiltin<"__spirv_Store", OpenCL_std, LoadStore, 2, 4, OpStore>;
H A DSPIRVBuiltins.cpp2438 case SPIRV::LoadStore: in mapBuiltinToOpcode()
2569 case SPIRV::LoadStore: in lowerBuiltin()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp1107 if (auto *LoadStore = dyn_cast<MemSDNode>(Node); in reassociationCanBreakAddressingModePattern() local
1108 LoadStore && LoadStore->getBasePtr().getNode() == N) { in reassociationCanBreakAddressingModePattern()
1112 EVT VT = LoadStore->getMemoryVT(); in reassociationCanBreakAddressingModePattern()
1113 unsigned AS = LoadStore->getAddressSpace(); in reassociationCanBreakAddressingModePattern()
1145 if (auto *LoadStore = dyn_cast<MemSDNode>(Node)) { in reassociationCanBreakAddressingModePattern() local
1152 EVT VT = LoadStore->getMemoryVT(); in reassociationCanBreakAddressingModePattern()
1153 unsigned AS = LoadStore->getAddressSpace(); in reassociationCanBreakAddressingModePattern()
1170 auto *LoadStore = dyn_cast<MemSDNode>(Node); in reassociationCanBreakAddressingModePattern() local
1171 if (!LoadStore) in reassociationCanBreakAddressingModePattern()
1179 EVT VT = LoadStore->getMemoryVT(); in reassociationCanBreakAddressingModePattern()
[all …]
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DOpenCLBuiltins.td1174 …var extension_fp16 = !cast<FunctionExtension>("FuncExtFloatAtomicsFp16" # addrspace # "LoadStore");