Searched full:clear_flags (Results 1 – 5 of 5) sorted by relevance
| /arkcompiler/runtime_core/runtime/ |
| D | runtime.yaml | 46 clear_flags: [no_dce, no_hoist, no_cse, barrier, require_state, runtime_call] 58 clear_flags: [no_dce, no_hoist, no_cse, barrier, require_state, runtime_call] 70 clear_flags: [no_dce, no_hoist, no_cse, barrier, require_state, runtime_call] 82 clear_flags: [no_dce, no_hoist, no_cse, barrier, require_state, runtime_call] 93 clear_flags: [no_dce, no_hoist, no_cse, barrier, require_state, runtime_call] 104 clear_flags: [no_dce, no_hoist, no_cse, barrier, require_state, runtime_call] 115 clear_flags: [no_dce, no_hoist, no_cse, barrier, require_state, runtime_call] 126 clear_flags: [no_dce, no_hoist, no_cse, barrier, require_state, runtime_call] 137 clear_flags: [no_dce, no_hoist, no_cse, barrier, require_state, runtime_call] 148 clear_flags: [no_dce, no_hoist, no_cse, barrier, require_state, runtime_call] [all …]
|
| /arkcompiler/runtime_core/compiler/optimizer/templates/intrinsics/ |
| D | intrinsics_flags.inl.erb | 20 % if Compiler::intrinsics.any? {|intrinsic| !intrinsic.clear_flags.empty? or !intrinsic.set_flags.e… 23 % Compiler::intrinsics.select {|intrinsic| !intrinsic.clear_flags.empty? or !intrinsic.set_flags.em… 26 …constexpr auto clear_flags = <%= intrinsic.clear_flags.empty? ? "0U" : intrinsic.clear_flags.colle… 28 …static_assert((set_flags & clear_flags) == 0, "<%= intrinsic.enum_name %> clear_flags cannot inter… 30 …static_assert((clear_flags & compiler::inst_flags::REQUIRE_STATE) == 0, "<%= intrinsic.enum_name %… 32 % if !intrinsic.clear_flags.empty? 33 inst->ClearFlag(static_cast<inst_flags::Flags>(clear_flags)); 36 …static_assert((set_flags & compiler::inst_flags::CAN_THROW) == 0 || (clear_flags & (compiler::inst…
|
| D | intrinsic_flags_test.inl.erb | 19 …constexpr auto clear_flags = <%= intrinsic.clear_flags.empty? ? "0U" : intrinsic.clear_flags.colle… 23 inst->SetFlag(static_cast<inst_flags::Flags>(clear_flags));
|
| /arkcompiler/runtime_core/irtoc/ |
| D | intrinsics.yaml | 32 clear_flags: [require_state] 45 clear_flags: [require_state] 58 clear_flags: [require_state] 72 clear_flags: [require_state] 86 clear_flags: [require_state] 98 clear_flags: [require_state] 112 clear_flags: [runtime_call, require_state] 126 clear_flags: [runtime_call, require_state] 140 clear_flags: [runtime_call, require_state]
|
| /arkcompiler/runtime_core/runtime/templates/ |
| D | intrinsics.yaml.erb | 41 clear_flags: <%= intrinsic.respond_to?(:clear_flags) ? intrinsic.clear_flags : [] %>
|