Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/test/MC/Sparc/
H A Dsparcv9-atomic-instructions.s3 …! CHECK: membar #LoadLoad | #StoreLoad | #LoadStore | #StoreStore ! encoding: [0x81,0x43,0xe0,0x0…
12 …! CHECK: membar #LoadLoad | #StoreLoad | #LoadStore | #StoreStore | #Lookaside | #MemIssue | #Sync…
13 membar #LoadLoad | #StoreLoad | #LoadStore | #StoreStore | #Lookaside | #MemIssue | #Sync
/llvm-project-15.0.7/libc/test/src/__support/CPP/
H A Datomic_test.cpp15 TEST(LlvmLibcAtomicTest, LoadStore) { in TEST() argument
/llvm-project-15.0.7/llvm/test/MC/Disassembler/Sparc/
H A Dsparc-v9.txt123 # CHECK: membar #LoadLoad | #StoreLoad | #LoadStore | #StoreStore
132 # CHECK: membar #LoadLoad | #StoreLoad | #LoadStore | #StoreStore | #Lookaside | #MemIssue | #Sync
/llvm-project-15.0.7/llvm/unittests/CodeGen/
H A DRegAllocScoreTest.cpp48 MACRO(LoadStore, 0, (1ULL << MCID::MayLoad) | (1ULL << MCID::MayStore)) \
85 return MF.CreateMachineInstr(MockInstrDescs[MockInstrId::LoadStore], in createMockLoadStore()
/llvm-project-15.0.7/llvm/lib/Target/NVPTX/
H A DNVPTX.h99 enum LoadStore { enum
/llvm-project-15.0.7/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()
/llvm-project-15.0.7/llvm/lib/Target/AArch64/GISel/
H A DAArch64InstructionSelector.cpp2898 MachineInstr *LoadStore = SelectLoadStoreAddressingMode(); in select() local
2899 if (!LoadStore) in select()
2905 LoadStore->getOperand(0).getReg(), MRI); in select()
2907 switch (LoadStore->getOpcode()) { in select()
2911 LoadStore->getOperand(0).setReg(AArch64::WZR); in select()
2914 LoadStore->getOperand(0).setReg(AArch64::XZR); in select()
2928 Register DstReg = LoadStore->getOperand(0).getReg(); in select()
2929 LoadStore->getOperand(0).setReg(LdReg); in select()
2931 MIB.setInsertPt(MIB.getMBB(), std::next(LoadStore->getIterator())); in select()
2936 constrainSelectedInstRegOperands(*LoadStore, TII, TRI, RBI); in select()
[all …]
/llvm-project-15.0.7/llvm/lib/CodeGen/GlobalISel/
H A DCombinerHelper.cpp4484 auto LoadStore = ConvUseOpc == TargetOpcode::G_LOAD || in reassociationCanBreakAddressingModePattern() local
4486 if (!LoadStore) in reassociationCanBreakAddressingModePattern()
/llvm-project-15.0.7/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp1036 if (auto *LoadStore = dyn_cast<MemSDNode>(Node)) { in reassociationCanBreakAddressingModePattern() local
1043 EVT VT = LoadStore->getMemoryVT(); in reassociationCanBreakAddressingModePattern()
1044 unsigned AS = LoadStore->getAddressSpace(); in reassociationCanBreakAddressingModePattern()
1061 auto *LoadStore = dyn_cast<MemSDNode>(Node); in reassociationCanBreakAddressingModePattern() local
1062 if (!LoadStore) in reassociationCanBreakAddressingModePattern()
1070 EVT VT = LoadStore->getMemoryVT(); in reassociationCanBreakAddressingModePattern()
1071 unsigned AS = LoadStore->getAddressSpace(); in reassociationCanBreakAddressingModePattern()
/llvm-project-15.0.7/clang/lib/Sema/
H A DOpenCLBuiltins.td1173 …var extension_fp16 = !cast<FunctionExtension>("FuncExtFloatAtomicsFp16" # addrspace # "LoadStore");