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

  /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/v8/src/
v8globals.h 436 CMOV = 15, // x86
platform-macos.cc 286 return (one << SSE2) | (one << CMOV) | (one << RDTSC) | (one << CPUID);
  /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...]
ARMISelDAGToDAG.cpp 243 /// SelectCMOVOp - Select CMOV instructions for ARM.
    [all...]
  /external/llvm/lib/Target/X86/
X86ISelLowering.h 110 CMOV,
    [all...]
X86ISelLowering.cpp 455 // X86 wants to expand cmov itself.
    [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...]
assembler-x64.cc 144 // SSE2 and CMOV must be available on an X64 CPU.
147 ASSERT(IsSupported(CMOV));
945 // No need to check CpuInfo for CMOV support, it's a required part of the
    [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...]
macro-assembler-ia32.cc 582 if (CpuFeatures::IsSupported(CMOV)) {
    [all...]

Completed in 656 milliseconds