HomeSort by relevance Sort by last modified time
    Searched refs:times_1 (Results 1 - 25 of 39) sorted by null

1 2

  /external/chromium_org/v8/test/cctest/
test-assembler-x64.cc 489 CHECK(Operand(rax, rax, times_1, offset).AddressUsesRegister(rax));
490 CHECK(!Operand(rax, rax, times_1, offset).AddressUsesRegister(r8));
491 CHECK(!Operand(rax, rax, times_1, offset).AddressUsesRegister(rcx));
493 CHECK(Operand(rax, rcx, times_1, offset).AddressUsesRegister(rax));
494 CHECK(Operand(rax, rcx, times_1, offset).AddressUsesRegister(rcx));
495 CHECK(!Operand(rax, rcx, times_1, offset).AddressUsesRegister(r8));
496 CHECK(!Operand(rax, rcx, times_1, offset).AddressUsesRegister(r9));
497 CHECK(!Operand(rax, rcx, times_1, offset).AddressUsesRegister(rdx));
498 CHECK(!Operand(rax, rcx, times_1, offset).AddressUsesRegister(rsp));
508 CHECK(Operand(rbp, rax, times_1, offset).AddressUsesRegister(rbp))
    [all...]
test-disasm-x87.cc 245 __ test(Operand(esi, edi, times_1, -20000000), Immediate(300000000));
  /external/chromium_org/v8/src/x64/
regexp-macro-assembler-x64.cc 183 __ leap(rax, Operand(rsi, rdi, times_1, 0));
195 __ leap(rax, Operand(rsi, rdi, times_1, 0));
253 __ leap(r9, Operand(rsi, rdx, times_1, 0));
254 __ leap(r11, Operand(rsi, rdi, times_1, 0));
317 __ leap(rcx, Operand(rsi, rdx, times_1, 0));
319 __ leap(rdx, Operand(rsi, rdi, times_1, 0));
326 __ leap(rax, Operand(rsi, rdi, times_1, 0));
328 __ leap(rdi, Operand(rsi, rdx, times_1, 0));
392 __ leap(rbx, Operand(rsi, rdi, times_1, 0)); // Start of match.
394 __ leap(r9, Operand(rdx, rax, times_1, 0)); // End of captur
    [all...]
macro-assembler-x64.cc 281 leap(scratch, Operand(object, kScratchRegister, times_1, 0));
    [all...]
ic-x64.cc 422 __ cmpp(rbx, Operand(kScratchRegister, rdi, times_1, off));
424 __ cmpp(rax, Operand(kScratchRegister, rdi, times_1, off + kPointerSize));
430 __ cmpp(rbx, Operand(kScratchRegister, rdi, times_1, off));
432 __ cmpp(rax, Operand(kScratchRegister, rdi, times_1, off + kPointerSize));
    [all...]
deoptimizer-x64.cc 265 __ Push(Operand(rbx, rcx, times_1, FrameDescription::frame_content_offset()));
codegen-x64.cc 534 __ movzxbl(result, Operand(result, index, times_1, 0));
559 times_1,
code-stubs-x64.cc     [all...]
  /external/chromium_org/v8/src/ia32/
codegen-ia32.cc 279 __ movdqu(xmm0, Operand(src, count, times_1, -0x10));
280 __ movdqu(Operand(dst, count, times_1, -0x10), xmm0);
391 __ movsd(xmm1, Operand(src, count, times_1, -8));
393 __ movsd(Operand(dst, count, times_1, -8), xmm1);
398 __ movdqu(xmm1, Operand(src, count, times_1, -0x10));
400 __ movdqu(Operand(dst, count, times_1, -0x10), xmm1);
406 __ movdqu(xmm2, Operand(src, count, times_1, -0x10));
409 __ movdqu(Operand(dst, count, times_1, -0x10), xmm2);
416 __ movdqu(xmm3, Operand(src, count, times_1, -0x10));
420 __ movdqu(Operand(dst, count, times_1, -0x10), xmm3)
    [all...]
regexp-macro-assembler-ia32.cc 166 __ lea(eax, Operand(esi, edi, times_1, 0));
178 __ lea(eax, Operand(esi, edi, times_1, 0));
362 __ lea(ebx, Operand(esi, edi, times_1, 0)); // Start of match.
364 __ lea(ecx, Operand(eax, ebx, times_1, 0)); // End of match
483 __ cmpb(FieldOperand(eax, index, times_1, ByteArray::kHeaderSize), 0);
553 Operand::StaticArray(current_character(), times_1, word_map));
567 Operand::StaticArray(current_character(), times_1, word_map));
685 __ lea(eax, Operand(edi, ebx, times_1, -char_size()));
725 __ mov(Operand(ebp, ecx, times_1, 0), eax);
    [all...]
stub-cache-ia32.cc 39 __ mov(extra, Operand::StaticArray(offset, times_1, value_offset));
42 __ cmp(name, Operand::StaticArray(offset, times_1, key_offset));
46 __ mov(offset, Operand::StaticArray(offset, times_1, map_offset));
74 __ cmp(name, Operand::StaticArray(offset, times_1, key_offset));
78 __ mov(offset, Operand::StaticArray(offset, times_1, map_offset));
86 __ mov(offset, Operand::StaticArray(offset, times_1, value_offset));
104 __ mov(offset, Operand::StaticArray(offset, times_1, value_offset));
    [all...]
ic-ia32.cc 487 __ cmp(ebx, Operand::StaticArray(edi, times_1, cache_keys));
490 __ cmp(ecx, Operand::StaticArray(edi, times_1, cache_keys));
498 __ cmp(ebx, Operand::StaticArray(edi, times_1, cache_keys));
501 __ cmp(ecx, Operand::StaticArray(edi, times_1, cache_keys));
    [all...]
deoptimizer-ia32.cc 364 __ push(Operand(ebx, ecx, times_1, FrameDescription::frame_content_offset()));
macro-assembler-ia32.cc     [all...]
code-stubs-ia32.cc     [all...]
assembler-ia32.cc 158 if (base.is(esp)) set_sib(times_1, esp, base);
162 if (base.is(esp)) set_sib(times_1, esp, base);
167 if (base.is(esp)) set_sib(times_1, esp, base);
    [all...]
builtins-ia32.cc     [all...]
  /external/chromium_org/v8/src/x87/
regexp-macro-assembler-x87.cc 166 __ lea(eax, Operand(esi, edi, times_1, 0));
178 __ lea(eax, Operand(esi, edi, times_1, 0));
362 __ lea(ebx, Operand(esi, edi, times_1, 0)); // Start of match.
364 __ lea(ecx, Operand(eax, ebx, times_1, 0)); // End of match
483 __ cmpb(FieldOperand(eax, index, times_1, ByteArray::kHeaderSize), 0);
553 Operand::StaticArray(current_character(), times_1, word_map));
567 Operand::StaticArray(current_character(), times_1, word_map));
685 __ lea(eax, Operand(edi, ebx, times_1, -char_size()));
725 __ mov(Operand(ebp, ecx, times_1, 0), eax);
    [all...]
stub-cache-x87.cc 39 __ mov(extra, Operand::StaticArray(offset, times_1, value_offset));
42 __ cmp(name, Operand::StaticArray(offset, times_1, key_offset));
46 __ mov(offset, Operand::StaticArray(offset, times_1, map_offset));
74 __ cmp(name, Operand::StaticArray(offset, times_1, key_offset));
78 __ mov(offset, Operand::StaticArray(offset, times_1, map_offset));
86 __ mov(offset, Operand::StaticArray(offset, times_1, value_offset));
104 __ mov(offset, Operand::StaticArray(offset, times_1, value_offset));
    [all...]
ic-x87.cc 487 __ cmp(ebx, Operand::StaticArray(edi, times_1, cache_keys));
490 __ cmp(ecx, Operand::StaticArray(edi, times_1, cache_keys));
498 __ cmp(ebx, Operand::StaticArray(edi, times_1, cache_keys));
501 __ cmp(ecx, Operand::StaticArray(edi, times_1, cache_keys));
    [all...]
deoptimizer-x87.cc 342 __ push(Operand(ebx, ecx, times_1, FrameDescription::frame_content_offset()));
code-stubs-x87.cc     [all...]
codegen-x87.cc 542 __ movzx_b(result, Operand(result, index, times_1, 0));
566 times_1,
macro-assembler-x87.cc 1020 lea(edi, FieldOperand(edi, edx, times_1, Code::kHeaderSize));
    [all...]
assembler-x87.cc 153 if (base.is(esp)) set_sib(times_1, esp, base);
157 if (base.is(esp)) set_sib(times_1, esp, base);
162 if (base.is(esp)) set_sib(times_1, esp, base);
    [all...]

Completed in 984 milliseconds

1 2