Searched defs:Store (Results 26 - 50 of 72) sorted by relevance

123

/external/llvm/unittests/Transforms/Utils/
H A DCloning.cpp251 Instruction* Store = IBuilder.CreateStore(AllocaContent, Alloca); local
260 DBuilder.insertDeclare(Alloca, Variable, Store);
/external/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeDAG.cpp346 SDValue Store = DAG.getTruncStore(Chain, dl, local
356 SDValue Load = DAG.getLoad(RegVT, dl, Store, StackPtr,
359 // Store it to the final location. Remember the store.
378 SDValue Load = DAG.getExtLoad(ISD::EXTLOAD, dl, RegVT, Store, StackPtr,
408 // Store the two parts
600 // Store the vector.
612 // Store the scalar value.
790 "Store size not an integral number of bytes!");
798 // Store the bottom RoundWidth bits.
804 // Store th
[all...]
H A DLegalizeTypes.cpp894 SDValue Store = DAG.getStore(DAG.getEntryNode(), dl, Op, StackPtr, local
897 return DAG.getLoad(DestVT, dl, Store, StackPtr, MachinePointerInfo(),
H A DLegalizeTypesGeneric.cpp163 SDValue Store = DAG.getStore(DAG.getEntryNode(), dl, InOp, StackPtr, PtrInfo, local
167 Lo = DAG.getLoad(NOutVT, dl, Store, StackPtr, PtrInfo,
177 Hi = DAG.getLoad(NOutVT, dl, Store, StackPtr,
H A DLegalizeVectorOps.cpp612 // Store Stride in bytes
622 SDValue Store = DAG.getTruncStore(Chain, dl, Ex, BasePTR, local
629 Stores.push_back(Store);
/external/llvm/lib/Target/XCore/
H A DXCoreFrameLowering.cpp435 auto Store = MI; local
436 --Store;
437 XFI->getSpillLabels().push_back(std::make_pair(Store, *it));
H A DXCoreISelLowering.cpp771 // Store the incremented VAList to the legalized pointer
1387 SDValue Store = DAG.getStore(Val.getValue(1), dl, Val, FIN, local
1389 MemOps.push_back(Store);
/external/chromium_org/ash/display/
H A Ddisplay_controller.cc158 void Store(bool clear_focus) { function in class:ash::FocusActivationStore
680 focus_activation_store_->Store(clear_focus);
/external/chromium_org/v8/src/compiler/
H A Draw-machine-assembler.h102 void Store(MachineType rep, Node* base, Node* value) { function in class:v8::internal::compiler::RawMachineAssembler
103 Store(rep, base, Int32Constant(0), value);
105 void Store(MachineType rep, Node* base, Node* index, Node* value) { function in class:v8::internal::compiler::RawMachineAssembler
106 NewNode(machine()->Store(StoreRepresentation(rep, kNoWriteBarrier)), base,
/external/chromium_org/v8/src/
H A Dhydrogen-gvn.cc81 void Store(SideEffects side_effects, HInstruction* instr);
335 void HSideEffectMap::Store(SideEffects side_effects, HInstruction* instr) { function in class:v8::internal::BASE_EMBEDDED::HSideEffectMap
833 // Store instruction as the dominating one for tracked side effects.
835 dominators->Store(changes, instr);
/external/clang/lib/CodeGen/
H A DCGAtomic.cpp370 assert(!Dest && "Store does not return a value");
373 llvm::StoreInst *Store = CGF.Builder.CreateStore(LoadVal1, Ptr); local
374 Store->setAtomic(Order);
375 Store->setAlignment(Size);
376 Store->setVolatile(E->isVolatile());
H A DCGClass.cpp1901 llvm::StoreInst *Store = Builder.CreateStore(VTableAddressPoint, VTableField); local
1902 CGM.DecorateInstruction(Store, CGM.getTBAAInfoForVTablePtr());
/external/llvm/lib/Target/SystemZ/
H A DSystemZISelDAGToDAG.cpp166 // Return true on success and if the result had no index. Store the
296 // Return true if Load and Store are loads and stores of the same size
305 bool canUseBlockOperation(StoreSDNode *Store, LoadSDNode *Load) const;
976 bool SystemZDAGToDAGISel::canUseBlockOperation(StoreSDNode *Store, argument
979 if (Load->getMemoryVT() != Store->getMemoryVT())
983 if (Load->isVolatile() || Store->isVolatile())
992 const Value *V2 = Store->getMemOperand()->getValue();
999 int64_t End2 = Store->getSrcValueOffset() + Size;
1004 AliasAnalysis::Location(V2, End2, Store->getTBAAInfo()));
1008 auto *Store local
[all...]
/external/chromium_org/v8/src/ic/
H A Dic.cc1280 MaybeHandle<Object> StoreIC::Store(Handle<Object> object, Handle<Name> name, function in class:v8::internal::StoreIC
1428 // This is currently guaranteed by checks in StoreIC::Store.
1783 MaybeHandle<Object> KeyedStoreIC::Store(Handle<Object> object, function in class:v8::internal::KeyedStoreIC
1807 StoreIC::Store(object, Handle<String>::cast(key), value,
2089 isolate, result, ic.Store(receiver, key, args.at<Object>(2)));
2104 isolate, result, ic.Store(receiver, key, args.at<Object>(2)));
2144 isolate, result, ic.Store(receiver, key, args.at<Object>(2)));
2159 isolate, result, ic.Store(receiver, key, args.at<Object>(2)));
/external/llvm/lib/Target/R600/
H A DSIISelLowering.cpp931 StoreSDNode *Store = cast<StoreSDNode>(Op); local
932 EVT VT = Store->getMemoryVT();
935 if (Store->getAddressSpace() == AMDGPUAS::LOCAL_ADDRESS &&
948 return DAG.getTruncStore(Store->getChain(), DL,
949 DAG.getSExtOrTrunc(Store->getValue(), DL, MVT::i32),
950 Store->getBasePtr(), MVT::i1, Store->getMemOperand());
952 if (Store->getAddressSpace() != AMDGPUAS::PRIVATE_ADDRESS)
955 SDValue Ptr = DAG.getNode(ISD::SRL, DL, MVT::i32, Store->getBasePtr(),
957 SDValue Chain = Store
[all...]
H A DAMDGPUISelLowering.cpp93 assert(StoreSize % 32 == 0 && "Store size not a multiple of 32");
1041 StoreSDNode *Store = cast<StoreSDNode>(Op); local
1042 EVT MemVT = Store->getMemoryVT();
1053 SDValue Value = Store->getValue();
1056 SDValue Ptr = Store->getBasePtr();
1084 return DAG.getTruncStore(Store->getChain(), DL, PackedValue, Ptr,
1085 Store->getMemOperand()->getPointerInfo(),
1087 Store->isNonTemporal(), Store->isVolatile(),
1088 Store
1099 StoreSDNode *Store = cast<StoreSDNode>(Op); local
1229 StoreSDNode *Store = cast<StoreSDNode>(Op); local
[all...]
/external/valgrind/main/VEX/priv/
H A Dhost_mips_defs.h329 Min_StoreC, /* mips Store Conditional Word - SC */
516 } Store; member in union:__anon31937::__anon31938
H A Dhost_amd64_defs.h526 } Store; member in union:__anon31681::__anon31682
583 /* Store the FPU status word (fstsw m16) */
/external/clang/include/clang/Analysis/Analyses/
H A DThreadSafetyTIL.h1123 // Store a value to memory.
1125 class Store : public SExpr { class in namespace:clang::threadSafety
1129 Store(SExpr *P, SExpr *V) : SExpr(COP_Store), Dest(P), Source(V) {} function in class:clang::threadSafety::Store
1130 Store(const Store &S, SExpr *P, SExpr *V) : SExpr(S), Dest(P), Source(V) {} function in class:clang::threadSafety::Store
1145 template <class C> typename C::CType compare(Store* E, C& Cmp) {
/external/llvm/bindings/ocaml/llvm/
H A Dllvm.ml175 | Store Constructor in type:Opcode/t
/external/llvm/lib/Target/Sparc/
H A DSparcISelLowering.cpp495 // Store remaining ArgRegs to the stack if this is a varargs function.
805 SDValue Store = DAG.getStore(DAG.getEntryNode(), dl, local
809 SDValue Hi = DAG.getLoad(MVT::i32, dl, Store, StackPtr,
815 SDValue Lo = DAG.getLoad(MVT::i32, dl, Store, StackPtr,
825 // Store the low part in stack.
836 // Store the high part.
843 // Store the low part.
1128 // Store and reload into the interger register reg and reg+1.
1139 // Store to %sp+BIAS+128+Offset
1140 SDValue Store
[all...]
/external/llvm/lib/Target/X86/
H A DX86ISelDAGToDAG.cpp541 SDValue Store = CurDAG->getTruncStore(CurDAG->getEntryNode(), dl, local
545 SDValue Result = CurDAG->getExtLoad(ISD::EXTLOAD, dl, DstVT, Store, MemTmp,
H A DX86InstrInfo.cpp4799 SDNode *Store = local
4802 NewNodes.push_back(Store);
/external/llvm/lib/Transforms/Instrumentation/
H A DAddressSanitizer.cpp1313 StoreInst *Store = IRB.CreateStore(ConstantInt::get(Int8Ty, 1), Guard); local
1314 Store->setAtomic(Monotonic);
1315 Store->setAlignment(1);
1772 // Store 0 while we're calculating alloca for value V to avoid
/external/llvm/lib/Transforms/Scalar/
H A DSROA.cpp2276 StoreInst *Store = IRB.CreateAlignedStore(V, &NewAI, NewAI.getAlignment()); local
2279 (void)Store;
2280 DEBUG(dbgs() << " to: " << *Store << "\n");
2297 StoreInst *Store = IRB.CreateAlignedStore(V, &NewAI, NewAI.getAlignment()); local
2299 (void)Store;
2300 DEBUG(dbgs() << " to: " << *Store << "\n");
2659 StoreInst *Store = cast<StoreInst>( local
2661 (void)Store;
2662 DEBUG(dbgs() << " to: " << *Store << "\n");
2907 Value *Store local
[all...]

Completed in 757 milliseconds

123