Home
last modified time | relevance | path

Searched full:stores (Results 1 – 25 of 119) sorted by relevance

12345

/arkcompiler/runtime_core/static_core/compiler/docs/
Dcode_sink_doc.md53 … therefore, when we meet load instruction, we have already collected all stores after this load an…
57 … into blocks with more than one predecessors (because other predecessors might have aliased stores)
72 ArenaVector<Inst *> stores;
75 candidate = SinkInstruction(inst, &stores, barriered);
86 BasicBlock *CodeSink::SinkInstruction(Inst *inst, ArenaVector<Inst *> *stores, bool barriered) {
87 // Save stores to be sure we do not sink a load instruction that may be aliased
89 stores->push_back(inst);
102 for (auto store : *stores) {
123 // Do not sink loads across a critical edge there may be stores in other code paths.
Dmove_constants_closer_to_usage_doc.md8 - constants residing in registers may cause excessive caller registers load/stores around method ca…
12 Avoid unnecessary constants definition and excessive caller registers load/stores around method cal…
Descape_analysis.md44 * Remove dead allocations, loads/stores and alias instructions.
121 replace load, stores and other aliases with aliased instrutions;
Dmemory_coalescing_doc.md40 The case with a coalesced store is quite straightforward: having two consecutive stores we replace …
42 | Consecutive Stores | Coalesced Store |
147 ### Loads and Stores with immediate indices
/arkcompiler/runtime_core/static_core/compiler/optimizer/optimizations/
Dcode_sink.cpp56 * - Loads that may be aliased by following stores in a basic block
102 InstVector stores(GetGraph()->GetLocalAllocator()->Adapter()); in ProcessBlock() local
114 BasicBlock *candidate = SinkInstruction(inst, &stores, memBarrier); in ProcessBlock()
143 BasicBlock *CodeSink::SinkInstruction(Inst *inst, InstVector *stores, bool barriered) in SinkInstruction() argument
146 // Save stores to be sure we do not sink a load instruction that may be in SinkInstruction()
149 stores->push_back(inst); in SinkInstruction()
163 // Do not sink over monitors or volatile stores in SinkInstruction()
167 for (auto store : *stores) { in SinkInstruction()
206 // Do not sink loads across a critical edge there may be stores in in IsAcceptableTarget()
Dcode_sink.h49 BasicBlock *SinkInstruction(Inst *inst, InstVector *stores, bool barriered);
Dlse.h36 * 1) delete stores that attempt to store the same values that already have
75 * stores inside the loop).
Dlse.cpp132 …/* Stores added to eliminations_ above aren't checked versus phis -> no double instruction elimina… in VisitStore()
313 // There are several cases when a MUST_ALIAS load is alive at backedge while stores in ProcessBackedges()
317 … // We've checked that no stores exist in inner loops earlier, which allows us to just check in ProcessBackedges()
415 // Found a path without shadowing stores in ExistsPathWithoutShadowingStores()
442 // We want to see if there are no paths from the store that evade any of its shadow stores in FinalizeShadowedStores()
451 … COMPILER_LOG(DEBUG, LSE_OPT) << LogInst(inst) << " is fully shadowed by aliased stores"; in FinalizeShadowedStores()
598 // Without stores, we can replace all MUST_ALIAS loads with instruction itself in TryLoopDoElimination()
713 …* Further phi candidates would replace MUST_ALIAS accesses in the loop if no aliased stores were m…
1064 // Do not touch Stores and eliminated ones in TryToHoistLoadFromLoop()
/arkcompiler/runtime_core/static_core/tests/checked/
Dconst-array-vectorization.pa14 #! CHECKER Check that SLP Vectorizer transforms consecutive stores into vector stores
/arkcompiler/runtime_core/static_core/compiler/optimizer/analysis/
Dlive_registers.h96 // Each LifeIntervalsTreeNode stores intervals covering the mid point associated with a node, these…
97 // sorted by the life range end in descending order. Every left child stores intervals ended before…
98 // mid point and every right child stores intervals started after current node's mid point.
/arkcompiler/runtime_core/static_core/runtime/profilesaver/
Dprofile_saver.h52 …* output_filename records the profile name, code_paths stores all the locations contain pandafile(…
98 …* Fetches the current resolved classes and methods from the ClassLinker and stores them in the pro…
/arkcompiler/ets_runtime/ecmascript/jspandafile/
Dclass_info_extractor.h27 // Attention: keys accessor stores the property key and properties accessor stores the property val…
28 // accessor stores the key-value pair abuttally.
/arkcompiler/runtime_core/compiler/docs/
Dmove_constants_closer_to_usage_doc.md8 - constants residing in registers may cause excessive caller registers load/stores around method ca…
12 Avoid unnecessary constants definition and excessive caller registers load/stores around method cal…
Daot_resolve_string.md50 slots in order to scan and update them. As an optimization `AotManager` stores information about wh…
/arkcompiler/runtime_core/static_core/libllvmbackend/transforms/
Dpipeline_irtoc.cfg145 slp-vectorizer, # Transform consecutive stores into vector-stores
Dpipeline.cfg205 slp-vectorizer, # Transform consecutive stores into vector-stores
/arkcompiler/runtime_core/static_core/runtime/fibers/arch/arm/
Dhelpers.S19 /// stores GPR and FP context to the buffer that starts at the address stored in the register r0 us…
/arkcompiler/runtime_core/static_core/runtime/fibers/arch/amd64/
Dhelpers.S19 /// stores GPR and FP context to the buffer that starts at the address stored in the register named…
/arkcompiler/runtime_core/static_core/runtime/
Dcompiler_queue_simple.h24 …* The simple queue works as FIFO without any other logic: it stores all tasks to a list and extrac…
/arkcompiler/runtime_core/static_core/runtime/fibers/arch/aarch64/
Dhelpers.S19 /// stores GPR and FP context to the buffer that starts at the address stored in the register #ctx_…
/arkcompiler/ets_frontend/es2panda/util/
DpatchFix.h125 std::string patchMain0_; // stores newly added function define ins, runtime will execute
126 …std::string patchMain1_; // stores modified function and class define ins, runtime will scan but …
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/include/cg/
Dreg_info.h222 // When some registers are allocated to the callee, the caller stores a part of the registers
223 // and the callee stores another part of the registers.
/arkcompiler/runtime_core/static_core/bytecode_optimizer/
Dcommon.cpp64 // While Addi/SubI stores the output in accumulator, IncI works directly on registers. in CanConvertToIncI()
/arkcompiler/runtime_core/static_core/tests/cts-coverage-tool/lib/
Dsummary.rb79 …uncovered_for_group = { 'title' => group['title'] } # object stores uncovered assertions for the g…
/arkcompiler/runtime_core/static_core/plugins/ets/stdlib/escompat/
DError.sts103 * Forms stack from this.stackLines and stores it in this.stack_

12345