/external/v8/src/ |
v8globals.h | 466 CMOV = 15, // x86
|
platform-macos.cc | 285 return (one << SSE2) | (one << CMOV) | (one << RDTSC) | (one << CPUID);
|
/external/llvm/lib/Target/ARM/ |
ARMISelLowering.h | 59 CMOV, // ARM conditional move instructions.
|
ARMISelLowering.cpp | [all...] |
ARMISelDAGToDAG.cpp | 228 /// SelectCMOVOp - Select CMOV instructions for ARM. [all...] |
/external/v8/test/cctest/ |
test-disasm-ia32.cc | 398 // cmov. 400 if (CpuFeatures::IsSupported(CMOV)) { 401 CpuFeatures::Scope use_cmov(CMOV); 402 __ cmov(overflow, eax, Operand(eax, 0)); 403 __ cmov(no_overflow, eax, Operand(eax, 1)); 404 __ cmov(below, eax, Operand(eax, 2)); 405 __ cmov(above_equal, eax, Operand(eax, 3)); 406 __ cmov(equal, eax, Operand(ebx, 0)); 407 __ cmov(not_equal, eax, Operand(ebx, 1)); 408 __ cmov(below_equal, eax, Operand(ebx, 2)) [all...] |
/external/llvm/lib/Target/X86/ |
X86ISelLowering.h | 110 CMOV, [all...] |
X86ISelLowering.cpp | 446 // X86 wants to expand cmov itself. [all...] |
/external/v8/src/x64/ |
assembler-x64.h | 448 if (f == CMOV && !FLAG_enable_cmov) return false; 501 // Safe defaults include SSE2 and CMOV for X64. It is always available, if 504 // fpu, tsc, cx8, cmov, mmx, sse, sse2, fxsr, syscall 505 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)); 939 // No need to check CpuInfo for CMOV support, it's a required part of the [all...] |
/external/v8/src/ia32/ |
assembler-ia32.cc | 750 void Assembler::cmov(Condition cc, Register dst, int32_t imm32) { function in class:v8::internal::Assembler 751 ASSERT(CpuFeatures::IsEnabled(CMOV)); 761 void Assembler::cmov(Condition cc, Register dst, Handle<Object> handle) { function in class:v8::internal::Assembler 762 ASSERT(CpuFeatures::IsEnabled(CMOV)); 772 void Assembler::cmov(Condition cc, Register dst, const Operand& src) { function in class:v8::internal::Assembler 773 ASSERT(CpuFeatures::IsEnabled(CMOV)); [all...] |
assembler-ia32.h | 462 if (f == CMOV && !FLAG_enable_cmov) return false; 712 void cmov(Condition cc, Register dst, int32_t imm32); 713 void cmov(Condition cc, Register dst, Handle<Object> handle); 714 void cmov(Condition cc, Register dst, const Operand& src); [all...] |
stub-cache-ia32.cc | [all...] |
code-stubs-ia32.cc | [all...] |
macro-assembler-ia32.cc | 264 if (CpuFeatures::IsSupported(CMOV)) { [all...] |