/arkcompiler/runtime_core/libpandafile/ |
H A D | pandafile_isapi.rb | 33 jump? && conditional? && stripped_mnemonic[-1] != 'z' 37 jump? && conditional? && stripped_mnemonic[-1] == 'z'
|
/arkcompiler/runtime_core/static_core/libpandafile/ |
H A D | pandafile_isapi.rb | 33 jump? && conditional? && stripped_mnemonic[-1] != 'z' 37 jump? && conditional? && stripped_mnemonic[-1] == 'z'
|
/arkcompiler/runtime_core/static_core/runtime/templates/ |
H A D | bridge_helpers_aarch64.rb | 28 def jump(target) method
|
H A D | bridge_helpers_arm.rb | 28 def jump(target) method
|
H A D | bridge_helpers_amd64.rb | 22 def jump(target) method
|
H A D | bridge_helpers_armhf.rb | 22 def jump(target) method
|
/arkcompiler/ets_runtime/ecmascript/compiler/baseline/ |
H A D | baseline_stubs.h | 40 inline void CheckExceptionWithJump(GateRef glue, GateRef sp, GateRef res, GateRef acc, Label *jump); 41 inline void CheckExceptionWithJumpAndReturn(GateRef glue, GateRef sp, GateRef res, GateRef acc, Label *jump);
|
H A D | baseline_stubs-inl.h | 88 void BaselineStubBuilder::CheckExceptionWithJump(GateRef glue, GateRef sp, GateRef res, GateRef acc, Label *jump)
in CheckExceptionWithJump() argument 101 Jump(jump);
in CheckExceptionWithJump() 106 Label *jump)
in CheckExceptionWithJumpAndReturn() 119 Jump(jump);
in CheckExceptionWithJumpAndReturn() 105 CheckExceptionWithJumpAndReturn(GateRef glue, GateRef sp, GateRef res, GateRef acc, Label *jump) CheckExceptionWithJumpAndReturn() argument
|
H A D | baseline_compiler.cpp | 3414 JumpLabel *jump = nullptr; in BYTECODE_BASELINE_HANDLER_IMPLEMENT() local 3416 jump = jumpMap.at(pos); in BYTECODE_BASELINE_HANDLER_IMPLEMENT() 3418 jump = new JumpLabel(); in BYTECODE_BASELINE_HANDLER_IMPLEMENT() 3419 jumpMap.insert({pos, jump}); in BYTECODE_BASELINE_HANDLER_IMPLEMENT() 3426 GetBaselineAssembler().Jump(*jump); in BYTECODE_BASELINE_HANDLER_IMPLEMENT() 3435 JumpLabel *jump = nullptr; in BYTECODE_BASELINE_HANDLER_IMPLEMENT() local 3437 jump = jumpMap.at(pos); in BYTECODE_BASELINE_HANDLER_IMPLEMENT() 3439 jump = new JumpLabel(); in BYTECODE_BASELINE_HANDLER_IMPLEMENT() 3440 jumpMap.insert({pos, jump}); in BYTECODE_BASELINE_HANDLER_IMPLEMENT() 3447 GetBaselineAssembler().Jump(*jump); in BYTECODE_BASELINE_HANDLER_IMPLEMENT() 3456 JumpLabel *jump = nullptr; BYTECODE_BASELINE_HANDLER_IMPLEMENT() local 3477 JumpLabel *jump = nullptr; BYTECODE_BASELINE_HANDLER_IMPLEMENT() local 3500 JumpLabel *jump = nullptr; BYTECODE_BASELINE_HANDLER_IMPLEMENT() local 3523 JumpLabel *jump = nullptr; BYTECODE_BASELINE_HANDLER_IMPLEMENT() local 3566 JumpLabel *jump = nullptr; BYTECODE_BASELINE_HANDLER_IMPLEMENT() local 3583 JumpLabel *jump = nullptr; BYTECODE_BASELINE_HANDLER_IMPLEMENT() local 3600 JumpLabel *jump = nullptr; BYTECODE_BASELINE_HANDLER_IMPLEMENT() local [all...] |
H A D | baseline_stub_builder.h | 79 void CheckExceptionWithJump(GateRef acc, GateRef res, Label *jump) in CheckExceptionWithJump() argument 91 Jump(jump); in CheckExceptionWithJump()
|
H A D | baseline_stubs.cpp | 99 #define CHECK_EXCEPTION_WITH_JUMP(res, jump) \ 100 CheckExceptionWithJump(glue, sp, res, acc, jump) 102 #define CHECK_EXCEPTION_WITH_JUMP_RETURN(res, jump) \ 103 CheckExceptionWithJumpAndReturn(glue, sp, res, acc, jump)
|
/arkcompiler/runtime_core/isa/ |
H A D | isapi.rb | 236 # Shortcut for querying 'jump' property 237 def jump? 238 properties.include? 'jump'
|
/arkcompiler/runtime_core/static_core/isa/ |
H A D | isapi.rb | 211 # Shortcut for querying 'jump' property 212 def jump? 213 properties.include? 'jump'
|
/arkcompiler/ets_runtime/ecmascript/compiler/ |
H A D | interpreter_stub.h | 188 GateRef res, Label *jump);
|
H A D | interpreter_stub-inl.h | 789 GateRef res, Label *jump) in CheckExceptionWithJump() 801 Jump(jump); in CheckExceptionWithJump() 787 CheckExceptionWithJump(GateRef glue, GateRef sp, GateRef pc, GateRef constpool, GateRef profileTypeInfo, GateRef acc, GateRef hotnessCounter, GateRef res, Label *jump) CheckExceptionWithJump() argument
|
H A D | typed_bytecode_lowering.cpp | 518 GateRef jump = Circuit::NullGate(); in SpeculateConditionJump() local 520 jump = builder_.TypedConditionJump<TypedJumpOp::TYPED_JNEZ>(value, paramType, weight); in SpeculateConditionJump() 522 jump = builder_.TypedConditionJump<TypedJumpOp::TYPED_JEQZ>(value, paramType, weight); in SpeculateConditionJump() 524 acc_.ReplaceGate(tacc.GetGate(), jump, jump, Circuit::NullGate()); in SpeculateConditionJump()
|
H A D | circuit_builder.cpp | 240 auto jump = Goto(currentControl); in Jump() local 241 currentLabel->SetControl(jump); in Jump()
|
H A D | interpreter_stub.cpp | 178 #define CHECK_EXCEPTION_WITH_JUMP(res, jump) \
180 res, jump)
|
H A D | stub_builder.cpp | 54 auto jump = env_->GetBuilder()->Goto(currentControl); in Jump() local 55 currentLabel->SetControl(jump); in Jump()
|