Home
last modified time | relevance | path

Searched full:redundant (Results 1 – 25 of 113) sorted by relevance

12345

/arkcompiler/runtime_core/static_core/libllvmbackend/transforms/
Dpipeline.cfg42 instcombine, # Combine redundant instructions
62 instcombine, # Combine redundant instructions
80 instcombine, # Combine redundant instructions
95 instcombine, # Combine redundant instructions
108 instcombine # Combine redundant instructions
136 instcombine, # Combine redundant instructions
150 instcombine, # Combine redundant instructions
162 instcombine, # Combine redundant instructions
179 instcombine # Combine redundant instructions
197 instcombine, # Combine redundant instructions
[all …]
Dpipeline_irtoc.cfg45 instcombine, # Combine redundant instructions
64 instcombine, # Combine redundant instructions
82 instcombine, # Combine redundant instructions
96 instcombine, # Combine redundant instructions
109 instcombine # Combine redundant instructions
137 instcombine, # Combine redundant instructions
147 instcombine, # Combine redundant instructions
151 instcombine, # Combine redundant instructions
167 instsimplify, # Remove redundant instructions
/arkcompiler/runtime_core/static_core/runtime/templates/
Dintrinsics.h.erb44 …8_t, uint32_t, uint32_t); // NOLINT(readability-named-parameter, readability-redundant-declaration)
45 …6_t, uint32_t, uint32_t); // NOLINT(readability-named-parameter, readability-redundant-declaration)
46 …2_t, uint32_t, uint32_t); // NOLINT(readability-named-parameter, readability-redundant-declaration)
47 …4_t, uint32_t, uint32_t); // NOLINT(readability-named-parameter, readability-redundant-declaration)
48 …oat, uint32_t, uint32_t); // NOLINT(readability-named-parameter, readability-redundant-declaration)
49 …ble, uint32_t, uint32_t); // NOLINT(readability-named-parameter, readability-redundant-declaration)
/arkcompiler/runtime_core/static_core/platforms/unix/libpandabase/
Dmem_hooks.h93 void *malloc(size_t size) noexcept; // NOLINT(readability-redundant-declaratio…
94 void *Memalign(size_t alignment, size_t size) noexcept; // NOLINT(readability-redundant-declaratio…
95 void free(void *ptr) noexcept; // NOLINT(readability-redundant-declaratio…
Dmem_hooks.cpp146 // NOLINTNEXTLINE(readability-redundant-declaration,readability-identifier-naming)
159 // NOLINTNEXTLINE(readability-redundant-declaration,readability-identifier-naming)
172 // NOLINTNEXTLINE(readability-redundant-declaration,readability-identifier-naming)
/arkcompiler/runtime_core/static_core/tests/checked/
Dcheckcast_elimination_test.pa49 #! CHECKER CheckCast Elimination applied, remove redundant checkcast.
79 #! CHECKER CheckCast Elimination applied, remove redundant checkcast, inline.
108 #! CHECKER CheckCast Elimination applied, remove redundant checkcast for field value.
143 #! CHECKER CheckCast Elimination applied, remove redundant checkcast for method return value.
Dcheckcast_elimination.pa43 #! CHECKER CheckCast Elimination applied, remove redundant checkcast for field value.
71 #! CHECKER CheckCast Elimination applied, remove redundant checkcast for method return value.
156 #! CHECKER Remove redundant checkcast for variable updated in loop.
/arkcompiler/ets_frontend/ets2panda/test/runtime/ets/
DCastReference3.ets36 // Verifier warning 22: Redundant check cast
37 // Accumulator type 'C[]' is always a subtype of 'FixedArray<B>'. Checkcast is redundant here.
/arkcompiler/runtime_core/static_core/compiler/docs/
Dredundant_loop_elimination_doc.md1 # Redundant Loop Elimination
3 **Redundant Loop Elimination(RLE)** - optimization which find and remove useless loops.
Dconstant_folding_doc.md31 3.i64 Add v1, v2 -> v4 // is redundant, can calculate in compile time
Dlower_boxed_boolean_doc.md9 - Prunes redundant branches checking nullability (`Compare ... NullPtr`).
/arkcompiler/runtime_core/static_core/plugins/ets/runtime/interop_js/timer_helper/
Dinterop_timer_helper.cpp22 // NOLINTBEGIN(readability-identifier-naming, readability-redundant-declaration)
26 // NOLINTEND(readability-identifier-naming, readability-redundant-declaration)
Dtimer.cpp30 // NOLINTBEGIN(readability-identifier-naming, readability-redundant-declaration)
35 // NOLINTEND(readability-identifier-naming, readability-redundant-declaration)
/arkcompiler/runtime_core/static_core/libpandabase/utils/
Dasan_interface.h35 // NOLINTNEXTLINE(readability-identifier-naming, readability-redundant-declaration)
40 // NOLINTNEXTLINE(readability-identifier-naming, readability-redundant-declaration)
/arkcompiler/runtime_core/static_core/bytecode_optimizer/templates/
Dcheck_width.cpp.erb59 // NOLINTBEGIN(readability-redundant-control-flow)
70 // NOLINTEND(readability-redundant-control-flow)
/arkcompiler/ets_frontend/ets2panda/linter/docs/rules/
Drecipe80.md9 considered redundant because object layout is known at compile time, and
/arkcompiler/ets_frontend/ets2panda/checker/
DASchecker.h25 // NOLINTNEXTLINE(readability-redundant-member-init)
DJSchecker.h25 // NOLINTNEXTLINE(readability-redundant-member-init)
/arkcompiler/runtime_core/static_core/compiler/optimizer/optimizations/
Dobject_type_check_elimination.cpp134 return CheckCastEliminateType::REDUNDANT; in TryEliminateCheckCast()
147 return CheckCastEliminateType::REDUNDANT; in TryEliminateCheckCast()
156 return CheckCastEliminateType::REDUNDANT; in TryEliminateCheckCast()
Dcse.h83 GlobalCse eliminates the redundant computations whose result can be obtained
85 to take place of the redundant instruction. For example,
251 // delete redundant insts in RemoveInstsIn()
Dobject_type_check_elimination.h66 enum CheckCastEliminateType { REDUNDANT, MUST_THROW, INVALID }; enumerator
Dlse.h29 * Load Store Elimination (Lse) optimization is aimed to eliminate redundant
31 * instructions are redundant. Lse has the heap representation in form of
/arkcompiler/ets_frontend/ets2panda/ir/
Dtyped.h23 // NOLINTBEGIN(readability-redundant-declaration)
25 // NOLINTEND(readability-redundant-declaration)
/arkcompiler/runtime_core/static_core/assembler/
Dassembly-debug.h28 std::string wholeLine; // NOTE(mbolshov): redundant given file and line_number
/arkcompiler/runtime_core/static_core/plugins/ets/tests/checked/
Dcleanup_call_inlined.ets16 //! CHECKER Remove redundant Call.Inlined and ReturnInlined

12345