Searched refs:jump_offset (Results 1 – 11 of 11) sorted by relevance
/third_party/node/deps/v8/src/interpreter/ |
D | interpreter-assembler.h | 197 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);
|
D | interpreter-assembler.cc | 1071 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 …]
|
D | bytecode-label.h | 53 size_t jump_offset() const { in jump_offset() function
|
D | bytecode-array-writer.cc | 159 PatchJump(current_offset, label->jump_offset()); in BindLabel()
|
/third_party/lwip/src/apps/mdns/ |
D | mdns.c | 842 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/ |
D | liftoff-assembler-ppc.h | 173 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/ |
D | assembler-riscv64.h | 230 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/ |
D | liftoff-assembler-s390.h | 159 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/ |
D | assembler-loong64.h | 206 uint64_t jump_offset(Label* L);
|
/third_party/node/deps/v8/src/codegen/mips64/ |
D | assembler-mips64.h | 242 uint64_t jump_offset(Label* L);
|
D | assembler-mips64.cc | 1344 uint64_t Assembler::jump_offset(Label* L) { in jump_offset() function in v8::internal::Assembler
|