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

1 2 3 4 5 67 8 91011>>

  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeTypesGeneric.cpp 160 // Lower the bit-convert to a store/load from the stack.
172 // Emit a store to the stack slot.
173 SDValue Store = DAG.getStore(DAG.getEntryNode(), dl, InOp, StackPtr, PtrInfo,
177 Lo = DAG.getLoad(NOutVT, dl, Store, StackPtr, PtrInfo,
187 Hi = DAG.getLoad(NOutVT, dl, Store, StackPtr,
376 // Otherwise, store to a temporary and load out again as the new type.
LegalizeVectorTypes.cpp 455 case ISD::STORE:
532 /// ScalarizeVecOp_STORE - If the value to store is a vector that needs to be
533 /// scalarized, it must be <1 x ty>. Just store the element.
535 assert(N->isUnindexed() && "Indexed store of one-element vector?");
852 SDValue Store = DAG.getStore(DAG.getEntryNode(), dl, Vec, StackPtr,
855 // Store the new subvector into the specified index.
859 Store = DAG.getStore(Store, dl, SubVec, SubVecPtr, MachinePointerInfo(),
863 Lo = DAG.getLoad(Lo.getValueType(), dl, Store, StackPtr, MachinePointerInfo(),
    [all...]
  /external/llvm/lib/Target/XCore/
XCoreFrameLowering.cpp 442 auto Store = MI;
443 --Store;
444 XFI->getSpillLabels().push_back(std::make_pair(Store, *it));
  /external/llvm/lib/Transforms/Scalar/
SROA.cpp 290 /// store a pointer to that here and abort trying to form slices of the
296 /// We store a vector of the slices formed by uses of the alloca here. This
620 /// of an alloca and making a slice for each load and store at each offset.
773 DEBUG(dbgs() << "WARNING: Ignoring " << Size << " byte store @" << Offset
    [all...]
CorrelatedValuePropagation.cpp 384 case Instruction::Store:
  /external/v8/src/crankshaft/
hydrogen-gvn.cc 65 // Primary store - contains the first value
82 void Store(SideEffects side_effects, HInstruction* instr);
336 void HSideEffectMap::Store(SideEffects side_effects, HInstruction* instr) {
351 HStoreNamedField* store = HStoreNamedField::cast(instr); local
352 HConstant* target = HConstant::cast(store->object());
836 // Store instruction as the dominating one for tracked side effects.
838 dominators->Store(changes, instr);
  /external/valgrind/VEX/priv/
host_x86_isel.c 814 addInstr(env, X86Instr_FpLdSt(False/*store*/, 8, reg, zero_esp));
    [all...]
host_s390_isel.c     [all...]
host_ppc_isel.c 183 A single precision store truncates/denormalises the in-register value,
577 // store hi,lo as Ity_I32's
600 // store as Ity_I64
    [all...]
host_amd64_isel.c     [all...]
  /external/llvm/lib/Target/X86/
X86TargetTransformInfo.cpp     [all...]
  /external/v8/src/compiler/
wasm-compiler.cc 2322 Node* store = local
2784 Node* store; local
2849 Node* store; local
2887 Node* store = graph()->NewNode(op, MemBuffer(0), index, MemSize(0), val, local
    [all...]
  /external/clang/lib/CodeGen/
CGExprCXX.cpp 367 // Each store is split by the existence of a vbptr.
378 assert(!SplitBeforeSize.isNegative() && "negative store size!");
384 assert(!SplitAfterSize.isNegative() && "negative store size!");
409 for (std::pair<CharUnits, CharUnits> Store : Stores) {
410 CharUnits StoreOffset = Store.first;
411 CharUnits StoreSize = Store.second;
423 for (std::pair<CharUnits, CharUnits> Store : Stores) {
424 CharUnits StoreOffset = Store.first;
425 CharUnits StoreSize = Store.second;
    [all...]
  /external/v8/test/cctest/compiler/
test-run-load-store.cc 99 m.Store(MachineRepresentation::kFloat32, m.PointerConstant(to),
125 m.Store(MachineRepresentation::kFloat64, m.PointerConstant(to),
184 m.Store(rep.representation(), base, index1, load, kNoWriteBarrier);
350 Node* store = local
353 USE(store);
800 Node* store = m.StoreToPointer( local
802 USE(store);
  /external/google-breakpad/src/processor/
basic_source_line_resolver.cc 367 return public_symbols_.Store(address, symbol);
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
codegen.ml 152 * store start -> var
164 * store nextvar -> var
176 (* Store the value into the alloca. *)
328 (* Store the initial value into the alloca. *)
  /external/llvm/lib/Analysis/
CostModel.cpp 426 case Instruction::Store: {
  /external/v8/src/ic/
ic.cc     [all...]
  /external/v8/src/x64/
deoptimizer-x64.cc 137 __ Store(ExternalReference(Isolate::kCEntryFPAddress, isolate()), rbp);
140 // Unfortunately we can't store it directly in r8 (used for passing
  /external/v8/test/mjsunit/harmony/
atomics.js 50 assertThrows(function() { Atomics.store(o, 0, 0); }, TypeError);
71 assertThrows(function() { Atomics.store(si32a, i, 0); }, RangeError);
85 assertThrows(function() { Atomics.store(si32a, i, 0); }, RangeError);
98 assertThrows(function() { Atomics.store(si32a2, i, 0); }, RangeError);
112 assertThrows(function() { Atomics.store(si32a, i, 0); });
148 testOp(Atomics.store, array, i, 0, name);
166 testOp(Atomics.store, array, i, 3, name);
194 // array[i] == 0, CAS will store
198 // array[i] == 50, CAS will not store
253 assertEquals(50, Atomics.store(array, i, 50), name)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
lmdfs.h 303 NET_API_STATUS WINAPI NetDfsAddStdRootForced(LPWSTR ServerName,LPWSTR RootShare,LPWSTR Comment,LPWSTR Store);
  /art/compiler/utils/x86/
assembler_x86.cc     [all...]
  /art/compiler/utils/x86_64/
assembler_x86_64.cc     [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/
README.rst 118 * Amazon Elastic Block Store (EBS)
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
ProgramState.h 23 #include "clang/StaticAnalyzer/Core/PathSensitive/Store.h"
65 /// 2. A mapping from locations to values (Store)
87 Store store; // Maps a location to its current value. member in class:clang::ento::ProgramState
92 /// state with the exception of using the specified Store.
93 ProgramStateRef makeWithStore(const StoreRef &store) const;
120 /// Return the store associated with this state. The store
122 Store getStore() const { return store; }
    [all...]

Completed in 2294 milliseconds

1 2 3 4 5 67 8 91011>>