Home
last modified time | relevance | path

Searched full:runtime_call (Results 1 – 15 of 15) 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 …]
Dcompiler.h501 uintptr_t GetIntrinsicAddress(bool runtime_call, IntrinsicId id) const override;
/arkcompiler/runtime_core/compiler/optimizer/ir/
Dinstructions.yaml254 flags: [can_throw, no_dce, no_hoist, no_cse, alloc, require_state, runtime_call, mem_barrier]
262 flags: [can_throw, no_dce, no_hoist, no_cse, alloc, require_state, runtime_call, mem_barrier]
270 flags: [can_throw, no_dce, no_hoist, no_cse, alloc, require_state, runtime_call, acc_write]
332 …flags: [load, can_throw, no_dce, no_cse, no_hoist, barrier, require_state, runtime_call, implicit_…
349 …flags: [store, can_throw, no_dce, no_cse, no_hoist, barrier, require_state, runtime_call, implicit…
366 …flags: [load, can_throw, no_dce, no_hoist, no_cse, barrier, require_state, runtime_call, implicit_…
383 …flags: [store, can_throw, no_dce, no_hoist, no_cse, barrier, require_state, runtime_call, implicit…
398 flags: [load, can_throw, no_hoist, no_cse, require_state, runtime_call, acc_write]
404 flags: [load, can_throw, no_hoist, no_dce, no_cse, require_state, barrier, runtime_call]
410 flags: [store, no_hoist, no_dce, no_cse, no_dst, require_state, barrier, runtime_call]
[all …]
Druntime_interface.h856 …virtual uintptr_t GetIntrinsicAddress([[maybe_unused]] bool runtime_call, [[maybe_unused]] Intrins… in GetIntrinsicAddress() argument
Dinst.h1041 return GetFlag(inst_flags::RUNTIME_CALL); in IsRuntimeCall()
/arkcompiler/runtime_core/irtoc/
Dintrinsics.yaml112 clear_flags: [runtime_call, require_state]
126 clear_flags: [runtime_call, require_state]
140 clear_flags: [runtime_call, require_state]
/arkcompiler/runtime_core/compiler/optimizer/optimizations/
Ddeoptimize_elimination.h64 * RUNTIME_CALL - If block have runtime call inst before IsMustDeoptimize(in reverse order)
65 * NOTHING - If block is preccessed, but it doesn't contain GUARD and RUNTIME_CALL
67 enum BlockType { INVALID, GUARD, RUNTIME_CALL, NOTHING }; enumerator
Ddeoptimize_elimination.cpp223 PushNewBlockType(block, BlockType::RUNTIME_CALL); in CanRemoveGuardRec()
/arkcompiler/runtime_core/compiler/optimizer/templates/intrinsics/
Dget_intrinsics.inl.erb59 uintptr_t PandaRuntimeInterface::GetIntrinsicAddress(bool runtime_call, PandaRuntimeInterface::Intr…
88 …return runtime_call ? reinterpret_cast<uintptr_t>(<%= "#{intrinsic.impl.rpartition('::').last}Brid…
96 return runtime_call ? reinterpret_cast<uintptr_t>(<%= bridge %>) :
Dintrinsic_flags_test.inl.erb25 … inst_flags::NO_HOIST | inst_flags::BARRIER | inst_flags::REQUIRE_STATE | inst_flags::RUNTIME_CALL;
Dentrypoints_bridge_asm_macro.inl.erb25 // Default intrinsic implementation with runtime_call which is called by Codegen::CallIntrinsic
Dintrinsics_flags.inl.erb36 …_flags & (compiler::inst_flags::REQUIRE_STATE | compiler::inst_flags::RUNTIME_CALL)) == 0, "<%= in…
/arkcompiler/ets_runtime/ecmascript/compiler/
Dgate_meta_data.h216 V(RuntimeCall, RUNTIME_CALL, GateFlags::NONE_FLAG, 0, 1, value) \
Dcircuit_optimizer.cpp484 {OpCode::RUNTIME_CALL, [&]() -> bool { return RunRuntimeCall(gate); }}, in Run()
Dllvm_ir_builder.cpp141 {OpCode::RUNTIME_CALL, &LLVMIRBuilder::HandleRuntimeCall}, in InitializeHandlers()