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/
Dinterpreter-assembler.h197 void Jump(TNode<IntPtrT> jump_offset);
200 void JumpBackward(TNode<IntPtrT> jump_offset);
205 TNode<IntPtrT> jump_offset);
221 TNode<IntPtrT> jump_offset);
369 void Jump(TNode<IntPtrT> jump_offset, bool backward);
374 void JumpConditional(TNode<BoolT> condition, TNode<IntPtrT> jump_offset);
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() argument
1095 Jump(jump_offset); in JumpConditional()
1106 TNode<IntPtrT> jump_offset = Signed(BytecodeOperandUImmWord(operand_index)); in JumpConditionalByImmediateOperand() local
[all …]
Dbytecode-label.h53 size_t jump_offset() const { in jump_offset() function
Dbytecode-array-writer.cc159 PatchJump(current_offset, label->jump_offset()); in BindLabel()
/third_party/lwip/src/apps/mdns/
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/
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/
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/
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/
Dassembler-loong64.h206 uint64_t jump_offset(Label* L);
/third_party/node/deps/v8/src/codegen/mips64/
Dassembler-mips64.h242 uint64_t jump_offset(Label* L);
Dassembler-mips64.cc1344 uint64_t Assembler::jump_offset(Label* L) { in jump_offset() function in v8::internal::Assembler