Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/lib/Target/NVPTX/
H A DNVPTX.h100 enum LoadStore { enum
/openbsd-src/gnu/llvm/llvm/lib/Target/PowerPC/GISel/
H A DPPCInstructionSelector.cpp690 MachineInstr *LoadStore = SelectLoadStoreAddressingMode(); in select() local
691 if (!LoadStore) in select()
694 return constrainSelectedInstRegOperands(*LoadStore, TII, TRI, RBI); in select()
/openbsd-src/gnu/llvm/llvm/lib/Transforms/Instrumentation/
H A DInstrProfiling.cpp475 for (const auto &LoadStore : PromotionCandidates) { in promoteCounterLoadStores() local
476 auto *CounterLoad = LoadStore.first; in promoteCounterLoadStores()
477 auto *CounterStore = LoadStore.second; in promoteCounterLoadStores()
/openbsd-src/gnu/gcc/gcc/config/sparc/
H A Dsync.md36 /* member #StoreStore | #LoadStore | #StoreLoad | #LoadLoad */
/openbsd-src/gnu/llvm/llvm/lib/Target/AArch64/GISel/
H A DAArch64InstructionSelector.cpp2946 MachineInstr *LoadStore = SelectLoadStoreAddressingMode(); in select() local
2947 if (!LoadStore) in select()
2953 LoadStore->getOperand(0).getReg(), MRI); in select()
2955 switch (LoadStore->getOpcode()) { in select()
2959 LoadStore->getOperand(0).setReg(AArch64::WZR); in select()
2962 LoadStore->getOperand(0).setReg(AArch64::XZR); in select()
2971 if (MRI.getType(LoadStore->getOperand(0).getReg()).getSizeInBits() != 64) in select()
2976 Register DstReg = LoadStore->getOperand(0).getReg(); in select()
2977 LoadStore->getOperand(0).setReg(LdReg); in select()
2979 MIB.setInsertPt(MIB.getMBB(), std::next(LoadStore->getIterator())); in select()
[all …]
/openbsd-src/sys/arch/sparc64/sparc64/
H A Dlocore.s1963 membar #LoadStore
3093 membar #LoadStore
3124 membar #LoadStore
3171 membar #LoadStore
3372 membar #LoadStore
3953 membar #LoadStore
3983 membar #LoadStore
4011 membar #LoadStore
4039 membar #LoadStore
4082 membar #LoadStore
[all...]
/openbsd-src/gnu/llvm/llvm/lib/Target/SPIRV/
H A DSPIRVBuiltins.td56 def LoadStore : BuiltinGroup;
565 defm : DemangledNativeBuiltin<"__spirv_Load", OpenCL_std, LoadStore, 1, 3, OpLoad>;
566 defm : DemangledNativeBuiltin<"__spirv_Store", OpenCL_std, LoadStore, 2, 4, OpStore>;
H A DSPIRVBuiltins.cpp1909 case SPIRV::LoadStore: in lowerBuiltin()
/openbsd-src/gnu/llvm/llvm/lib/CodeGen/GlobalISel/
H A DCombinerHelper.cpp4552 auto LoadStore = ConvUseOpc == TargetOpcode::G_LOAD || in reassociationCanBreakAddressingModePattern() local
4554 if (!LoadStore) in reassociationCanBreakAddressingModePattern()
/openbsd-src/gnu/llvm/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp1053 if (auto *LoadStore = dyn_cast<MemSDNode>(Node)) { in reassociationCanBreakAddressingModePattern() local
1060 EVT VT = LoadStore->getMemoryVT(); in reassociationCanBreakAddressingModePattern()
1061 unsigned AS = LoadStore->getAddressSpace(); in reassociationCanBreakAddressingModePattern()
1078 auto *LoadStore = dyn_cast<MemSDNode>(Node); in reassociationCanBreakAddressingModePattern() local
1079 if (!LoadStore) in reassociationCanBreakAddressingModePattern()
1087 EVT VT = LoadStore->getMemoryVT(); in reassociationCanBreakAddressingModePattern()
1088 unsigned AS = LoadStore->getAddressSpace(); in reassociationCanBreakAddressingModePattern()
/openbsd-src/gnu/llvm/clang/lib/Sema/
H A DOpenCLBuiltins.td1174 …var extension_fp16 = !cast<FunctionExtension>("FuncExtFloatAtomicsFp16" # addrspace # "LoadStore");