Home
last modified time | relevance | path

Searched refs:IsStore (Results 1 – 25 of 26) sorted by relevance

12

/external/llvm/lib/Target/Mips/MCTargetDesc/
DMipsNaClELFStreamer.cpp150 bool IsStore; in EmitInstruction() local
152 &IsStore); in EmitInstruction()
158 bool MaskAfter = IsSPFirstOperand && !IsStore; in EmitInstruction()
203 bool *IsStore) { in isBasePlusOffsetMemoryAccess() argument
204 if (IsStore) in isBasePlusOffsetMemoryAccess()
205 *IsStore = false; in isBasePlusOffsetMemoryAccess()
235 if (IsStore) in isBasePlusOffsetMemoryAccess()
236 *IsStore = true; in isBasePlusOffsetMemoryAccess()
243 if (IsStore) in isBasePlusOffsetMemoryAccess()
244 *IsStore = true; in isBasePlusOffsetMemoryAccess()
DMipsMCNaCl.h21 bool *IsStore = nullptr);
/external/llvm/lib/CodeGen/
DAtomicExpandPass.cpp51 bool IsStore, bool IsLoad);
103 bool IsStore, IsLoad; in runOnFunction() local
108 IsStore = false; in runOnFunction()
113 IsStore = true; in runOnFunction()
119 IsStore = IsLoad = true; in runOnFunction()
130 IsStore = IsLoad = true; in runOnFunction()
134 MadeChange |= bracketInstWithFences(I, FenceOrdering, IsStore, IsLoad); in runOnFunction()
179 bool IsStore, bool IsLoad) { in bracketInstWithFences() argument
182 auto LeadingFence = TLI->emitLeadingFence(Builder, Order, IsStore, IsLoad); in bracketInstWithFences()
184 auto TrailingFence = TLI->emitTrailingFence(Builder, Order, IsStore, IsLoad); in bracketInstWithFences()
/external/llvm/lib/Target/PowerPC/
DPPCVSXSwapRemoval.cpp79 unsigned int IsStore : 1; member
365 SwapVector[VecIdx].IsStore = 1; in gatherVectorInstructions()
371 SwapVector[VecIdx].IsStore = 1; in gatherVectorInstructions()
675 SwapVector[UseIdx].IsStore) { in recordUnoptimizableWebs()
691 } else if (SwapVector[EntryIdx].IsStore && SwapVector[EntryIdx].IsSwap) { in recordUnoptimizableWebs()
698 SwapVector[DefIdx].IsStore) { in recordUnoptimizableWebs()
744 } else if (SwapVector[EntryIdx].IsStore && SwapVector[EntryIdx].IsSwap) { in markSwapsForRemoval()
940 if (SwapVector[EntryIdx].IsStore) in dumpSwapVector()
DPPCISelLowering.h512 bool IsStore, bool IsLoad) const override;
514 bool IsStore, bool IsLoad) const override;
/external/llvm/lib/Target/NVPTX/
DNVPTXInstrFormats.td37 bit IsStore = 0;
53 let TSFlags{6-6} = IsStore;
/external/v8/test/unittests/compiler/
Dchange-lowering-unittest.cc196 IsStore(StoreRepresentation(MachineRepresentation::kTagged, in TARGET_TEST_P()
215 IsStore(StoreRepresentation(MachineRepresentation::kTagged, in TARGET_TEST_P()
261 IsStore(StoreRepresentation(MachineRepresentation::kTagged, in TARGET_TEST_P()
285 IsStore(StoreRepresentation(MachineRepresentation::kWord8, in TARGET_TEST_P()
378 IsStore( in TARGET_TEST_F()
482 IsStore( in TARGET_TEST_F()
611 IsStore( in TARGET_TEST_F()
Dinterpreter-assembler-unittest.h35 Matcher<Node*> IsStore(const Matcher<StoreRepresentation>& rep_matcher,
Dinterpreter-assembler-unittest.cc76 Matcher<Node*> InterpreterAssemblerTest::InterpreterAssemblerForTest::IsStore( in IsStore() function in v8::internal::compiler::InterpreterAssemblerTest::InterpreterAssemblerForTest
80 return ::i::compiler::IsStore(rep_matcher, base_matcher, index_matcher, in IsStore()
444 m.IsStore(StoreRepresentation(MachineRepresentation::kTagged, in TARGET_TEST_F()
574 m.IsStore(StoreRepresentation(MachineRepresentation::kTagged, in TARGET_TEST_F()
Dmachine-operator-reducer-unittest.cc1579 IsStore(rep, base, index, value, effect, control)); in TEST_F()
1603 IsStore(rep, base, index, value, effect, control)); in TEST_F()
1626 IsStore(rep, base, index, value, effect, control)); in TEST_F()
1651 IsStore(rep, base, index, value, effect, control)); in TEST_F()
Dnode-test-utils.h256 Matcher<Node*> IsStore(const Matcher<StoreRepresentation>& rep_matcher,
Dnode-test-utils.cc1999 Matcher<Node*> IsStore(const Matcher<StoreRepresentation>& rep_matcher, in IsStore() function
/external/clang/lib/CodeGen/
DCGAtomic.cpp1032 bool IsStore = E->getOp() == AtomicExpr::AO__c11_atomic_store || in EmitAtomicExpr() local
1048 if (IsStore) in EmitAtomicExpr()
1060 if (IsLoad || IsStore) in EmitAtomicExpr()
1089 if (!IsStore) in EmitAtomicExpr()
1093 if (!IsLoad && !IsStore) in EmitAtomicExpr()
1110 if (!IsStore) { in EmitAtomicExpr()
1128 if (!IsLoad && !IsStore) { in EmitAtomicExpr()
/external/llvm/lib/Target/ARM/
DARMISelLowering.h443 bool IsStore, bool IsLoad) const override;
445 bool IsStore, bool IsLoad) const override;
DARMLoadStoreOptimizer.cpp456 bool IsStore = in UpdateBaseRegUses() local
459 if (IsLoad || IsStore) { in UpdateBaseRegUses()
472 if (Offset >= 0 && !(IsStore && InstrSrcReg == Base)) in UpdateBaseRegUses()
DARMISelLowering.cpp11869 AtomicOrdering Ord, bool IsStore, in emitLeadingFence() argument
11882 if (!IsStore) in emitLeadingFence()
11897 AtomicOrdering Ord, bool IsStore, in emitTrailingFence() argument
/external/v8/src/arm64/
Dinstructions-arm64.cc43 bool Instruction::IsStore() const { in IsStore() function in v8::internal::Instruction
Dinstructions-arm64.h232 bool IsStore() const;
Dsimulator-arm64.cc1602 if (instr->IsStore()) { in LoadStoreHelper()
1704 if (instr->IsStore()) { in LoadStorePairHelper()
/external/llvm/lib/Target/Hexagon/
DHexagonExpandCondsets.cpp853 bool IsLoad = TheI->mayLoad(), IsStore = TheI->mayStore(); in canMoveMemTo() local
854 if (!IsLoad && !IsStore) in canMoveMemTo()
876 bool Conflict = (L && IsStore) || S; in canMoveMemTo()
/external/vixl/src/vixl/a64/
Dinstructions-a64.cc104 bool Instruction::IsStore() const { in IsStore() function in vixl::Instruction
Dinstructions-a64.h270 bool IsStore() const;
/external/llvm/include/llvm/Target/
DTargetLowering.h1091 AtomicOrdering Ord, bool IsStore, in emitLeadingFence() argument
1096 if (isAtLeastRelease(Ord) && IsStore) in emitLeadingFence()
1103 AtomicOrdering Ord, bool IsStore, in emitTrailingFence() argument
/external/llvm/lib/Target/X86/
DX86MCInstLower.cpp355 bool IsStore = Inst.getOperand(0).isReg() && Inst.getOperand(1).isReg(); in SimplifyShortMoveForm() local
356 unsigned AddrBase = IsStore; in SimplifyShortMoveForm()
357 unsigned RegOp = IsStore ? 0 : 5; in SimplifyShortMoveForm()
/external/llvm/lib/Target/AArch64/
DAArch64ISelLowering.cpp9074 bool IsStore = false; in performNEONPostLDSTCombine() local
9089 NumVecs = 2; IsStore = true; break; in performNEONPostLDSTCombine()
9091 NumVecs = 3; IsStore = true; break; in performNEONPostLDSTCombine()
9093 NumVecs = 4; IsStore = true; break; in performNEONPostLDSTCombine()
9101 NumVecs = 2; IsStore = true; break; in performNEONPostLDSTCombine()
9103 NumVecs = 3; IsStore = true; break; in performNEONPostLDSTCombine()
9105 NumVecs = 4; IsStore = true; break; in performNEONPostLDSTCombine()
9119 NumVecs = 2; IsStore = true; IsLaneOp = true; break; in performNEONPostLDSTCombine()
9121 NumVecs = 3; IsStore = true; IsLaneOp = true; break; in performNEONPostLDSTCombine()
9123 NumVecs = 4; IsStore = true; IsLaneOp = true; break; in performNEONPostLDSTCombine()
[all …]

12