Home
last modified time | relevance | path

Searched refs:jump_offset (Results 1 - 11 of 11) sorted by relevance

/third_party/node/deps/v8/src/interpreter/
H A Dinterpreter-assembler.h196 // Jump forward relative to the current bytecode by the |jump_offset|.
197 void Jump(TNode<IntPtrT> jump_offset);
199 // Jump backward relative to the current bytecode by the |jump_offset|.
200 void JumpBackward(TNode<IntPtrT> jump_offset);
202 // Jump forward relative to the current bytecode by |jump_offset| if the
205 TNode<IntPtrT> jump_offset);
218 // Jump forward relative to the current bytecode by |jump_offset| if the
221 TNode<IntPtrT> jump_offset);
366 // Jump relative to the current bytecode by the |jump_offset|. If |backward|,
369 void Jump(TNode<IntPtrT> jump_offset, boo
[all...]
H A Dinterpreter-assembler.cc1071 void InterpreterAssembler::Jump(TNode<IntPtrT> jump_offset, bool backward) { in Jump() argument
1074 UpdateInterruptBudget(TruncateIntPtrToInt32(jump_offset), backward); in Jump()
1075 TNode<IntPtrT> new_bytecode_offset = Advance(jump_offset, backward); in Jump()
1081 void InterpreterAssembler::Jump(TNode<IntPtrT> jump_offset) { in Jump() argument
1082 Jump(jump_offset, false); in Jump()
1085 void InterpreterAssembler::JumpBackward(TNode<IntPtrT> jump_offset) { in JumpBackward() argument
1086 Jump(jump_offset, true); in JumpBackward()
1090 TNode<IntPtrT> jump_offset) { in JumpConditional()
1095 Jump(jump_offset); in JumpConditional()
1106 TNode<IntPtrT> jump_offset in JumpConditionalByImmediateOperand() local
1089 JumpConditional(TNode<BoolT> condition, TNode<IntPtrT> jump_offset) JumpConditional() argument
1118 TNode<IntPtrT> jump_offset = JumpConditionalByConstantOperand() local
1125 JumpIfTaggedEqual(TNode<Object> lhs, TNode<Object> rhs, TNode<IntPtrT> jump_offset) JumpIfTaggedEqual() argument
1128 JumpConditional(TaggedEqual(lhs, rhs), jump_offset); JumpIfTaggedEqual() local
1143 JumpIfTaggedNotEqual(TNode<Object> lhs, TNode<Object> rhs, TNode<IntPtrT> jump_offset) JumpIfTaggedNotEqual() argument
1146 JumpConditional(TaggedNotEqual(lhs, rhs), jump_offset); JumpIfTaggedNotEqual() local
[all...]
H A Dbytecode-label.h53 size_t jump_offset() const { in jump_offset() function in v8::internal::interpreter::final
H A Dbytecode-array-writer.cc159 PatchJump(current_offset, label->jump_offset()); in BindLabel()
/third_party/lwip/src/apps/mdns/
H A Dmdns.c842 u16_t jump_offset = 0; in mdns_write_domain() local
852 jump_offset = offset; in mdns_write_domain()
875 if (jump_offset) { in mdns_write_domain()
877 jump = lwip_htons(DOMAIN_JUMP | jump_offset); in mdns_write_domain()
/third_party/node/deps/v8/src/wasm/baseline/ppc/
H A Dliftoff-assembler-ppc.h173 int jump_offset = pc_offset() - offset; in PatchPrepareStackFrame() local
174 if (!is_int26(jump_offset)) { in PatchPrepareStackFrame()
178 patching_assembler.b(jump_offset, LeaveLK); in PatchPrepareStackFrame()
211 jump_offset = offset - pc_offset() + kInstrSize; in PatchPrepareStackFrame()
212 if (!is_int26(jump_offset)) { in PatchPrepareStackFrame()
216 b(jump_offset, LeaveLK); in PatchPrepareStackFrame()
/third_party/node/deps/v8/src/codegen/riscv64/
H A Dassembler-riscv64.h230 inline int32_t jump_offset(Label* L) { in jump_offset() function
1114 inline void j(Label* L) { j(jump_offset(L)); } in j()
1117 inline void jal(Label* L) { jal(jump_offset(L)); } in jal()
/third_party/node/deps/v8/src/wasm/baseline/s390/
H A Dliftoff-assembler-s390.h159 int jump_offset = pc_offset() - offset; in PatchPrepareStackFrame() local
160 patching_assembler.branchOnCond(al, jump_offset, true, true); in PatchPrepareStackFrame()
193 jump_offset = offset - pc_offset() + 6; in PatchPrepareStackFrame()
194 branchOnCond(al, jump_offset, true); in PatchPrepareStackFrame()
/third_party/node/deps/v8/src/codegen/loong64/
H A Dassembler-loong64.h206 uint64_t jump_offset(Label* L);
/third_party/node/deps/v8/src/codegen/mips64/
H A Dassembler-mips64.h242 uint64_t jump_offset(Label* L);
H A Dassembler-mips64.cc1344 uint64_t Assembler::jump_offset(Label* L) { in jump_offset() function in v8::internal::Assembler

Completed in 40 milliseconds