Lines Matching refs:bytes
19 // Use a push, because mov to an extended register takes 6 bytes.
20 pushq_imm32(func_index); // 5 bytes
21 EmitJumpSlot(lazy_compile_target); // 5 bytes
28 near_jmp(displacement, RelocInfo::NO_INFO); // 5 bytes
35 jmp(Operand(&data)); // 6 bytes
36 Nop(2); // 2 bytes
42 dq(target); // 8 bytes
49 // Offset of the target is at 8 bytes, see {EmitFarJumpSlot}.
57 void JumpTableAssembler::NopBytes(int bytes) {
58 DCHECK_LE(0, bytes);
59 Nop(bytes);
65 mov(kWasmCompileLazyFuncIndexRegister, func_index); // 5 bytes
66 jmp(lazy_compile_target, RelocInfo::NO_INFO); // 5 bytes
83 void JumpTableAssembler::NopBytes(int bytes) {
84 DCHECK_LE(0, bytes);
85 Nop(bytes);
115 dd(target); // 4 bytes (== 1 instruction)
125 void JumpTableAssembler::NopBytes(int bytes) {
126 DCHECK_LE(0, bytes);
127 DCHECK_EQ(0, bytes % kInstrSize);
128 for (; bytes > 0; bytes -= kInstrSize) {
173 dq(target); // 8 bytes (== 2 instructions)
181 // See {EmitFarJumpSlot} for the offset of the target (16 bytes with
182 // CFI enabled, 8 bytes otherwise).
195 void JumpTableAssembler::NopBytes(int bytes) {
196 DCHECK_LE(0, bytes);
197 DCHECK_EQ(0, bytes % kInstrSize);
198 for (; bytes > 0; bytes -= kInstrSize) {
206 // Load function index to r7. 6 bytes
208 // Jump to {lazy_compile_target}. 6 bytes or 12 bytes
210 b(r1); // 2 bytes
221 nop(0); // make the slot align to 8 bytes
227 lgrl(ip, &target_addr); // 6 bytes
228 b(ip); // 8 bytes
242 void JumpTableAssembler::NopBytes(int bytes) {
243 DCHECK_LE(0, bytes);
244 DCHECK_EQ(0, bytes % 2);
245 for (; bytes > 0; bytes -= 2) {
277 void JumpTableAssembler::NopBytes(int bytes) {
278 DCHECK_LE(0, bytes);
279 DCHECK_EQ(0, bytes % kInstrSize);
280 for (; bytes > 0; bytes -= kInstrSize) {
307 void JumpTableAssembler::NopBytes(int bytes) {
308 DCHECK_LE(0, bytes);
309 DCHECK_EQ(0, bytes % kInstrSize);
310 for (; bytes > 0; bytes -= kInstrSize) {
363 void JumpTableAssembler::NopBytes(int bytes) {
364 DCHECK_LE(0, bytes);
365 DCHECK_EQ(0, bytes % 4);
366 for (; bytes > 0; bytes -= 4) {
403 void JumpTableAssembler::NopBytes(int bytes) {
404 DCHECK_LE(0, bytes);
405 DCHECK_EQ(0, bytes % kInstrSize);
406 for (; bytes > 0; bytes -= kInstrSize) {