HomeSort by relevance Sort by last modified time
    Searched refs:Store (Results 126 - 150 of 379) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/llvm/lib/Transforms/IPO/
ArgumentPromotion.cpp 190 } else if (StoreInst *Store = dyn_cast<StoreInst>(V)) {
191 Stores.push_back(Store);
198 for (StoreInst *Store : Stores)
199 if (PtrValues.count(Store->getValueOperand()))
    [all...]
  /external/v8/src/compiler/
int64-lowering.cc 168 // We change the original store node to store the low word, and create
169 // a new store node to store the high word. The effect and control edges
170 // are copied from the original store to the new store node, the effect
171 // edge of the original store is redirected to the new store.
183 const Operator* store_op = machine()->Store(StoreRepresentation(
526 machine()->Store(
557 Node* store = graph()->NewNode( local
    [all...]
raw-machine-assembler.h 126 Node* Store(MachineRepresentation rep, Node* base, Node* value,
128 return Store(rep, base, IntPtrConstant(0), value, write_barrier);
130 Node* Store(MachineRepresentation rep, Node* base, Node* index, Node* value,
132 return AddNode(machine()->Store(StoreRepresentation(rep, write_barrier)),
641 return Store(rep, PointerConstant(address), node, kNoWriteBarrier);
code-assembler.h 253 // Store value to raw memory location.
254 Node* Store(MachineRepresentation rep, Node* base, Node* value);
255 Node* Store(MachineRepresentation rep, Node* base, Node* index, Node* value);
262 // Store a value to the root array.
  /external/v8/src/crankshaft/arm64/
delayed-masm-arm64.cc 133 void DelayedMasm::Store(const CPURegister& rd, const MemOperand& operand) {
  /external/v8/test/cctest/
test-atomicops.cc 288 TEST(Store) {
  /external/webrtc/webrtc/video/
receive_statistics_proxy.cc 137 report_block_stats_.Store(statistics, ssrc, 0);
  /external/libavc/common/arm/
ih264_resi_trans_quant_a9.s 61 @ pointer to store nnz
62 @ pointer to store non quantized dc value
180 vst1.s16 d24[0], [r10] @Store the dc value to alternate dc sddress
231 vst1.s16 {q2-q3}, [r2] @Store blk
259 @ pointer to store nnz
260 @ pointer to store unquantized dc values
375 vst1.s16 d24[0], [r10] @Store Unquantized dc value to dc alte address
425 vst1.s16 {q2-q3}, [r2] @Store blk
682 vst1.s16 {q4}, [r1]! @Store the block
686 vst1.u16 d20[0], [r3] @store nn
    [all...]
  /external/valgrind/VEX/priv/
ir_defs.c     [all...]
ir_opt.c 80 Immediately prior to any load or store, those parts of the guest
84 be up-to-date at the point of the load/store.
440 e1 = flatten_Expr(bb, st->Ist.Store.addr);
441 e2 = flatten_Expr(bb, st->Ist.Store.data);
442 addStmtToIRSB(bb, IRStmt_Store(st->Ist.Store.end, e1,e2));
783 vassert(isIRAtom(st->Ist.Store.addr));
784 vassert(isIRAtom(st->Ist.Store.data));
    [all...]
host_arm64_isel.c     [all...]
host_mips_defs.c 956 i->Min.Store.sz = sz;
957 i->Min.Store.src = src;
958 i->Min.Store.dst = dst;
    [all...]
  /external/llvm/lib/Target/PowerPC/
PPCISelLowering.cpp 46 cl::desc("disable preincrement load/store generation on PPC"), cl::Hidden);
52 cl::desc("disable unaligned load/store generation on PPC"), cl::Hidden);
84 // PowerPC has pre-inc load and store's.
115 // PowerPC does not support direct load / store of condition registers
117 setOperationAction(ISD::STORE, MVT::i1, Custom);
443 setOperationAction(ISD::STORE, VT, Promote);
444 AddPromotedToType (ISD::STORE, VT, MVT::v4i32);
508 setOperationAction(ISD::STORE , MVT::v4i32, Legal);
599 setOperationAction(ISD::STORE, MVT::v2f64, Legal);
633 setOperationAction(ISD::STORE, MVT::v2i64, Promote)
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
CallAndMessageChecker.cpp 230 Store store; member in class:FindUninitializedField
233 MemRegionManager &mrMgr, Store s)
234 : StoreMgr(storeMgr), MrMgr(mrMgr), store(s) {}
250 const SVal &V = StoreMgr.getBinding(store, loc::MemRegionVal(FR));
  /external/llvm/unittests/Transforms/Utils/
Cloning.cpp 251 Instruction* Store = IBuilder.CreateStore(AllocaContent, Alloca);
262 DBuilder.insertDeclare(Alloca, Variable, E, DL, Store);
  /external/v8/src/ic/
ic.h 386 MUST_USE_RESULT MaybeHandle<Object> Store(
431 MUST_USE_RESULT MaybeHandle<Object> Store(Handle<Object> object,
  /external/v8/test/cctest/compiler/
codegen-tester.h 103 // The BufferedRawMachineAssemblerTester adds a Store node to the IR graph
104 // to store the graph's return value in memory. The memory address for the
105 // Store node is provided as a parameter. By storing the return value in
108 Store(MachineTypeForC<ReturnType>().representation(),
339 T->Store(rep.representation(), T->PointerConstant(&result),
  /external/valgrind/lackey/
lk_main.c 67 // S BE80199C,4 # data store at 0xBE80199C of size 4
81 // "store" or "modify" events. Some instructions do more than one load or
82 // store, as in the last two examples in the above trace.
93 // movl %eax, (%ebx) stores (%ebx) instr, store
99 // call*l (%edx) loads (%edx), stores -4(%esp) instr, load, store
100 // pushl (%edx) loads (%edx), stores -4(%esp) instr, load, store
101 // movsw loads (%esi), stores (%edi) instr, load, store
434 load-op-store instructions (x86, amd64), the instr is treated as if
525 // the Ir events to the events list so that merging of paired load/store
805 IRExpr* data = st->Ist.Store.data
    [all...]
  /packages/apps/Email/provider_src/com/android/email/service/
Pop3Service.java 34 import com.android.email.mail.Store;
35 import com.android.email.mail.store.Pop3Store;
36 import com.android.email.mail.store.Pop3Store.Pop3Folder;
37 import com.android.email.mail.store.Pop3Store.Pop3Message;
266 Pop3Store remoteStore = (Pop3Store)Store.getInstance(account, context);
445 // Remove any messages that are in the local store but no longer on the remote store.
  /art/compiler/utils/arm64/
assembler_arm64.h 123 // Store routines.
124 void Store(FrameOffset offs, ManagedRegister src, size_t size) OVERRIDE;
  /external/libchrome/base/
atomicops_unittest.cc 240 TEST(AtomicOpsTest, Store) {
  /external/v8/test/unittests/compiler/ia32/
instruction-selector-ia32-unittest.cc 258 m.Store(memacc.type.representation(), m.Parameter(0), m.Parameter(1),
274 m.Store(memacc.type.representation(), m.Int32Constant(base), m.Parameter(0),
297 m.Store(memacc.type.representation(), m.Parameter(0),
332 m->Store(MachineRepresentation::kWord32, base, store_index, load,
  /external/valgrind/exp-bbv/tests/x86/
rep_prefix.S 33 # Load and Store Instructions
39 # test 8-bit store
43 rep stosb # store d 16384 times, auto-increment
54 # test 16-bit store
56 mov $0x020d,%ax # store 0x020d
60 rep stosw # store 8192 times, auto-increment
71 # test 32-bit store
73 mov $0x0feb1378,%eax # store 0x0feb1378
77 rep stosl # store 4096 times, auto-increment
  /external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/source/
pitch_filter_armv6.S 45 str r4, [r6] @ Store return value to index2.
  /external/llvm/lib/Analysis/
CFLAliasAnalysis.cpp 82 // instructions like `store` require you to get the users of the first
407 // them as pointers to arbitrary memory locations we can store in
464 // we simply need the Instruction*. In other cases (i.e. store),
554 Store = std::make_tuple(Current->Weight, Current->Other);
555 return Store;
568 std::tuple<EdgeTypeT, Node> Store;
886 // store i32* null, i32** %ptr1
887 // store i32* null, i32** %ptr2
    [all...]

Completed in 3150 milliseconds

1 2 3 4 56 7 8 91011>>