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

  /external/qemu/distrib/sdl-1.2.12/src/cpuinfo/
SDL_cpuinfo.c 71 " movl $1,%0 # We have CPUID support \n"
79 CPUid by definition. But it's nice to be able to prove it. :) */
91 " movl $1,%0 # We have CPUID support \n"
109 mov has_CPUID,1 ; We have CPUID support
152 " xorl %%eax,%%eax # Set up for CPUID instruction \n"
153 " cpuid # Get and save vendor ID \n"
154 " cmpl $1,%%eax # Make sure 1 is valid input for CPUID\n"
155 " jl 1f # We dont have the CPUID instruction\n"
158 " cpuid # Get family/model/stepping/features\n"
168 xor eax, eax ; Set up for CPUID instructio
169 cpuid ; Get and save vendor ID local
174 cpuid ; Get family\/model\/stepping\/features local
221 cpuid ; Get extended function limit local
225 cpuid ; and get the information local
    [all...]
  /external/v8/src/
v8globals.h 429 // Feature flags bit positions. They are mostly based on the CPUID spec.
430 // (We assign CPUID itself to one of the currently reserved bits --
438 CPUID = 10, // x86
platform-macos.cc 284 // These constants are defined by the CPUid instructions.
286 return (one << SSE2) | (one << CMOV) | (one << RDTSC) | (one << CPUID);
  /external/v8/test/cctest/
test-disasm-x64.cc 102 CHECK(CpuFeatures::IsSupported(CPUID));
103 CpuFeatures::Scope fscope(CPUID);
104 __ cpuid();
test-disasm-ia32.cc 110 CHECK(CpuFeatures::IsSupported(CPUID));
111 CpuFeatures::Scope fscope(CPUID);
112 __ cpuid();
  /external/v8/src/ia32/
assembler-ia32.cc 84 Label cpuid, done; local
93 // If we can modify bit 21 of the EFLAGS register, then CPUID is supported.
102 __ xor_(eax, edx); // Different if CPUID is supported.
103 __ j(not_zero, &cpuid);
105 // CPUID not supported. Clear the supported features in edx:eax.
110 // Invoke CPUID with 1 in eax to get feature information in
111 // ecx:edx. Temporarily enable CPUID support because we know it's
113 __ bind(&cpuid);
115 supported_ = (1 << CPUID);
116 { Scope fscope(CPUID);
485 void Assembler::cpuid() { function in class:v8::internal::Assembler
    [all...]
  /external/oprofile/events/x86-64/family11h/
events 77 event:0x27 counters:0,1,2,3 um:zero minimum:500 name:RETIRED_CPUID : Retired CPUID instructions
  /external/oprofile/events/x86-64/hammer/
events 35 event:0x27 counters:0,1,2,3 um:zero minimum:500 name:RETIRED_CPUID_INSTRUCTIONS : Retired CPUID instructions
  /external/v8/src/x64/
assembler-x64.cc 73 Label cpuid, done; local
82 // If we can modify bit 21 of the EFLAGS register, then CPUID is supported.
91 __ xor_(rax, rdx); // Different if CPUID is supported.
92 __ j(not_zero, &cpuid);
94 // CPUID not supported. Clear the supported features in rax.
98 // Invoke CPUID with 1 in eax to get feature information in
99 // ecx:edx. Temporarily enable CPUID support because we know it's
101 __ bind(&cpuid);
103 supported_ = kDefaultCpuFeatures | (1 << CPUID);
104 { Scope fscope(CPUID);
1013 void Assembler::cpuid() { function in class:v8::internal::Assembler
    [all...]
  /external/zlib/contrib/masmx86/
gvmat32.asm 585 db 0fh,0a2h ;CPUID

Completed in 1267 milliseconds