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

1 2

  /dalvik/vm/compiler/codegen/x86/libenc/
enc_defs_ext.h 101 CCM(CMOV,O),
102 CCM(CMOV,NO),
103 CCM(CMOV,B), CCM(CMOV,NAE), CCM(CMOV,C),
104 CCM(CMOV,NB), CCM(CMOV,AE), CCM(CMOV,NC),
105 CCM(CMOV,Z), CCM(CMOV,E)
    [all...]
enc_defs.h 410 CCM(CMOV,O),
411 CCM(CMOV,NO),
412 CCM(CMOV,B), CCM(CMOV,NAE), CCM(CMOV,C),
413 CCM(CMOV,NB), CCM(CMOV,AE), CCM(CMOV,NC),
414 CCM(CMOV,Z), CCM(CMOV,E)
    [all...]
enc_tabl.cpp 495 BEGIN_MNEMONIC(CMOV##cc, MF_USES_FLAGS|MF_CONDITIONAL, DU_U ) \
    [all...]
  /external/chromium_org/v8/src/
v8globals.h 440 CMOV = 15, // x86
platform-posix.cc 86 return (one << SSE2) | (one << CMOV) | (one << RDTSC) | (one << CPUID);
  /external/v8/src/
v8globals.h 436 CMOV = 15, // x86
platform-macos.cc 286 return (one << SSE2) | (one << CMOV) | (one << RDTSC) | (one << CPUID);
  /external/chromium_org/v8/test/cctest/
test-disasm-x64.cc 365 // cmov.
367 if (CpuFeatures::IsSupported(CMOV)) {
368 CpuFeatures::Scope use_cmov(CMOV);
test-disasm-ia32.cc 382 // cmov.
384 if (CpuFeatures::IsSupported(CMOV)) {
385 CpuFeatureScope use_cmov(&assm, CMOV);
386 __ cmov(overflow, eax, Operand(eax, 0));
387 __ cmov(no_overflow, eax, Operand(eax, 1));
388 __ cmov(below, eax, Operand(eax, 2));
389 __ cmov(above_equal, eax, Operand(eax, 3));
390 __ cmov(equal, eax, Operand(ebx, 0));
391 __ cmov(not_equal, eax, Operand(ebx, 1));
392 __ cmov(below_equal, eax, Operand(ebx, 2))
    [all...]
  /external/v8/test/cctest/
test-disasm-x64.cc 372 // cmov.
374 if (CpuFeatures::IsSupported(CMOV)) {
375 CpuFeatures::Scope use_cmov(CMOV);
test-disasm-ia32.cc 391 // cmov.
393 if (CpuFeatures::IsSupported(CMOV)) {
394 CpuFeatures::Scope use_cmov(CMOV);
395 __ cmov(overflow, eax, Operand(eax, 0));
396 __ cmov(no_overflow, eax, Operand(eax, 1));
397 __ cmov(below, eax, Operand(eax, 2));
398 __ cmov(above_equal, eax, Operand(eax, 3));
399 __ cmov(equal, eax, Operand(ebx, 0));
400 __ cmov(not_equal, eax, Operand(ebx, 1));
401 __ cmov(below_equal, eax, Operand(ebx, 2))
    [all...]
  /external/llvm/lib/Target/ARM/
ARMISelLowering.h 65 CMOV, // ARM conditional move instructions.
ARMISelLowering.cpp     [all...]
  /external/llvm/lib/Target/X86/
X86ISelLowering.h 114 CMOV,
    [all...]
X86ISelLowering.cpp 510 // X86 wants to expand cmov itself.
    [all...]
  /external/chromium_org/v8/src/x64/
assembler-x64.h 477 if (f == CMOV && !FLAG_enable_cmov) return false;
495 // Safe defaults include CMOV for X64. It is always available, if
498 // fpu, tsc, cx8, cmov, mmx, sse, sse2, fxsr, syscall
499 static const uint64_t kDefaultCpuFeatures = (1 << CMOV);
    [all...]
  /external/v8/src/x64/
assembler-x64.h 458 if (f == CMOV && !FLAG_enable_cmov) return false;
514 // Safe defaults include SSE2 and CMOV for X64. It is always available, if
517 // fpu, tsc, cx8, cmov, mmx, sse, sse2, fxsr, syscall
518 static const uint64_t kDefaultCpuFeatures = (1 << SSE2 | 1 << CMOV);
    [all...]
  /external/chromium_org/v8/src/ia32/
assembler-ia32.h 539 if (f == CMOV && !FLAG_enable_cmov) return false;
738 void cmov(Condition cc, Register dst, Register src) {
739 cmov(cc, dst, Operand(src));
741 void cmov(Condition cc, Register dst, const Operand& src);
    [all...]
code-stubs-ia32.cc 736 if (CpuFeatures::IsSupported(CMOV)) {
737 CpuFeatureScope use_cmov(masm, CMOV);
738 __ cmov(not_equal, scratch1, result_reg);
756 if (CpuFeatures::IsSupported(CMOV)) {
757 CpuFeatureScope use_cmov(masm, CMOV);
758 __ cmov(greater, result_reg, scratch1);
    [all...]
assembler-ia32.cc 698 void Assembler::cmov(Condition cc, Register dst, const Operand& src) { function in class:v8::internal::Assembler
699 ASSERT(IsEnabled(CMOV));
    [all...]
macro-assembler-ia32.cc 701 if (CpuFeatures::IsSupported(CMOV)) {
    [all...]
  /external/v8/src/ia32/
assembler-ia32.h 465 if (f == CMOV && !FLAG_enable_cmov) return false;
722 void cmov(Condition cc, Register dst, Register src) {
723 cmov(cc, dst, Operand(src));
725 void cmov(Condition cc, Register dst, const Operand& src);
    [all...]
stub-cache-ia32.cc     [all...]
assembler-ia32.cc 707 void Assembler::cmov(Condition cc, Register dst, const Operand& src) { function in class:v8::internal::Assembler
708 ASSERT(CpuFeatures::IsEnabled(CMOV));
    [all...]
code-stubs-ia32.cc     [all...]

Completed in 990 milliseconds

1 2