Home
last modified time | relevance | path

Searched full:clear_flags (Results 1 – 5 of 5) sorted by relevance

/arkcompiler/runtime_core/runtime/
Druntime.yaml46 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/
Dintrinsics_flags.inl.erb20 % 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…
Dintrinsic_flags_test.inl.erb19 …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/
Dintrinsics.yaml32 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/
Dintrinsics.yaml.erb41 clear_flags: <%= intrinsic.respond_to?(:clear_flags) ? intrinsic.clear_flags : [] %>