Home
last modified time | relevance | path

Searched refs:NOP (Results 1 – 21 of 21) sorted by relevance

/arkcompiler/runtime_core/compiler/docs/
Ddeoptimize_elimination_doc.md17 If `SaveStateDeoptimize` didn't have users, this instruction is replaced by `NOP`.
21 * Constant is equal 0 -> `DeoptimizeIf` is replaced by `NOP`.
29 For another inputs, algorithm try to replaced by `NOP` all `DeoptimizeIf` instruction which is domi…
58 3. NOP
65 10. NOP
66 7. NOP
/arkcompiler/ets_runtime/ecmascript/interpreter/
Dinterpreter.h34 const uint8_t EXCEPTION_OPCODE = static_cast<uint8_t>(EcmaOpcode::NOP) + 3;
Dinterpreter-inl.h3785 HANDLE_OPCODE(NOP) { in RunInternal()
3787 DISPATCH(NOP); in RunInternal()
Dinterpreter_assembly.cpp7442 DISPATCH(NOP); in HandleNop()
/arkcompiler/ets_runtime/ecmascript/compiler/
Dgraph_editor.cpp58 case OpCode::NOP: in RemoveGate()
Dinterpreter_stub.cpp524 DISPATCH(NOP); in DECLARE_ASM_HANDLER()
529 DISPATCH(NOP); in DECLARE_ASM_HANDLER()
574 DISPATCH(NOP); in DECLARE_ASM_HANDLER()
4223 DISPATCH(NOP); in DECLARE_ASM_HANDLER()
4227 DISPATCH(NOP); in DECLARE_ASM_HANDLER()
4231 DISPATCH(NOP); in DECLARE_ASM_HANDLER()
4235 DISPATCH(NOP); in DECLARE_ASM_HANDLER()
4239 DISPATCH(NOP); in DECLARE_ASM_HANDLER()
4243 DISPATCH(NOP); in DECLARE_ASM_HANDLER()
4247 DISPATCH(NOP); in DECLARE_ASM_HANDLER()
[all …]
Dgate.cpp297 if (GetOpCode() == OpCode::NOP || GetOpCode() == OpCode::DEAD) { in CheckNOP()
718 if (opcode != OpCode::NOP && opcode != OpCode::DEAD) { in Print()
777 if (opcode != OpCode::NOP && opcode != OpCode::DEAD) { in ShortPrint()
Dgate_meta_data_builder.h172 const GateMetaData cachedNop_ { OpCode::NOP, GateFlags::NONE_FLAG, 0, 0, 0 };
Decma_opcode_des.h237 V(NOP) \
Dgate_meta_data.cpp268 return (opcode_ == OpCode::NOP || opcode_ == OpCode::DEAD); in IsNop()
Dgate_meta_data.h384 NOP = 0, enumerator
619 OpCode opcode_ { OpCode::NOP };
Dbytecodes.cpp238 case EcmaOpcode::NOP: in InitBytecodeMetaData()
1557 case EcmaOpcode::NOP: in InitBytecodeInfo()
Dllvm_ir_builder.cpp208 OpCode::NOP, OpCode::CIRCUIT_ROOT, OpCode::DEPEND_ENTRY, in InitializeHandlers()
/arkcompiler/ets_runtime/ecmascript/jspandafile/bytecode_inst/
Dold_instruction_enum.h70 NOP = 0, enumerator
Dold_instruction.h453 case Opcode::NOP: in GetFormat()
1269 case Opcode::NOP: in HasFlag()
/arkcompiler/runtime_core/compiler/tests/
Dmove_constants_test.cpp487 INST(1, Opcode::NOP); in TEST_F()
534 INST(1, Opcode::NOP); in TEST_F()
Dliveness_analyzer_test.cpp547 INST(13, Opcode::NOP); in TEST_F()
548 INST(14, Opcode::NOP); in TEST_F()
/arkcompiler/ets_runtime/ecmascript/interpreter/templates/
Ddebugger_instruction_handler.inl1091 DEBUG_HANDLE_OPCODE(NOP) argument
1094 REAL_GOTO_DISPATCH_OPCODE(EcmaOpcode::NOP);
/arkcompiler/runtime_core/libpandafile/tests/
Dbytecode_emitter_tests.cpp451 expected << Opcode::NOP;
/arkcompiler/ets_runtime/ecmascript/jspandafile/
Dpanda_file_translator.cpp306 *(pc + newLen + i) = static_cast<uint8_t>(EcmaOpcode::NOP); \
/arkcompiler/runtime_core/assembler/tests/
Dassembler_parser_test.cpp211 EXPECT_NE(func.ins[0].opcode, Opcode::NOP);