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

1 2 3

  /external/chromium_org/v8/src/ia32/
cpu-ia32.cc 50 return CpuFeatures::IsSupported(SSE2);
assembler-ia32.cc 65 if (CpuFeatures::IsSupported(SSE2)) {
74 if (CpuFeatures::IsSupported(SSE2)) {
83 if (CpuFeatures::IsSupported(SSE2)) {
400 if (!CpuFeatures::IsSupported(SSE2)) {
401 // Older CPUs that do not support SSE2 may not support multibyte NOP
    [all...]
lithium-gap-resolver-ia32.cc 321 if (CpuFeatures::IsSupported(SSE2)) {
322 CpuFeatureScope scope(cgen_->masm(), SSE2);
354 if (CpuFeatures::IsSupported(SSE2)) {
355 CpuFeatureScope scope(cgen_->masm(), SSE2);
367 // be a double stack slot in the non-SSE2 case.
374 if (CpuFeatures::IsSupported(SSE2)) {
375 CpuFeatureScope scope(cgen_->masm(), SSE2);
471 CpuFeatureScope scope(cgen_->masm(), SSE2);
480 CpuFeatureScope scope(cgen_->masm(), SSE2);
493 CpuFeatureScope scope(cgen_->masm(), SSE2);
    [all...]
codegen-ia32.cc 106 if (!CpuFeatures::IsSupported(SSE2)) return &exp;
117 CpuFeatureScope use_sse2(&masm, SSE2);
149 // If SSE2 is not available, we can use libc's implementation to ensure
151 if (buffer == NULL || !CpuFeatures::IsSupported(SSE2)) return &sqrt;
157 CpuFeatureScope use_sse2(&masm, SSE2);
307 if (CpuFeatures::IsSupported(SSE2)) {
308 CpuFeatureScope sse2_scope(&masm, SSE2);
571 // No SSE2.
739 if (CpuFeatures::IsSupported(SSE2)) {
740 CpuFeatureScope use_sse2(masm, SSE2);
    [all...]
lithium-codegen-ia32.cc 45 return CpuFeatures::IsSafeForSnapshot(SSE2) ? kSaveFPRegs : kDontSaveFPRegs;
270 if (info()->saves_caller_doubles() && CpuFeatures::IsSupported(SSE2)) {
272 CpuFeatureScope scope(masm(), SSE2);
356 if (!CpuFeatures::IsSupported(SSE2)) FlushX87StackIfNecessary(instr);
362 if (!CpuFeatures::IsSupported(SSE2)) {
    [all...]
code-stubs-ia32.h 72 ASSERT(CpuFeatures::IsSafeForSnapshot(SSE2) || save_fp == kDontSaveFPRegs);
321 ASSERT(CpuFeatures::IsSafeForSnapshot(SSE2) || fp_mode == kDontSaveFPRegs);
465 CpuFeatureScope scope(masm, SSE2);
479 CpuFeatureScope scope(masm, SSE2);
  /external/v8/src/ia32/
cpu-ia32.cc 50 return CpuFeatures::IsSupported(SSE2);
assembler-ia32.cc 409 if (!CpuFeatures::IsSupported(SSE2)) {
410 // Older CPUs that do not support SSE2 may not support multibyte NOP
    [all...]
codegen-ia32.cc 111 // If SSE2 is not available, we can use libc's implementation to ensure
113 if (buffer == NULL || !CpuFeatures::IsSupported(SSE2)) return &sqrt;
119 CpuFeatures::Scope use_sse2(SSE2);
178 if (CpuFeatures::IsSupported(SSE2)) {
179 CpuFeatures::Scope enable(SSE2);
296 // SSE2 not supported. Unlikely to happen in practice.
427 if (CpuFeatures::IsSupported(SSE2)) {
428 CpuFeatures::Scope use_sse2(SSE2);
452 if (CpuFeatures::IsSupported(SSE2)) {
453 CpuFeatures::Scope fscope(SSE2);
    [all...]
  /external/valgrind/main/exp-bbv/tests/amd64-linux/
rep_prefix.S 14 # Some SSE2 instructions start with 0xf2 or 0xf3
18 # have to check for SSE2 capability somehow?
  /external/v8/test/cctest/
test-assembler-ia32.cc 171 if (!CpuFeatures::IsSupported(SSE2)) return;
178 CHECK(CpuFeatures::IsSupported(SSE2));
179 { CpuFeatures::Scope fscope(SSE2);
206 if (!CpuFeatures::IsSupported(SSE2)) return;
213 CHECK(CpuFeatures::IsSupported(SSE2));
214 CpuFeatures::Scope fscope(SSE2);
263 if (!CpuFeatures::IsSupported(SSE2)) return;
266 CHECK(CpuFeatures::IsSupported(SSE2));
267 CpuFeatures::Scope fscope(SSE2);
309 if (!CpuFeatures::IsSupported(SSE2)) return
    [all...]
test-disasm-x64.cc 351 if (CpuFeatures::IsSupported(SSE2)) {
352 CpuFeatures::Scope fscope(SSE2);
397 if (CpuFeatures::IsSupported(SSE2)) {
398 CpuFeatures::Scope fscope(SSE2);
  /external/chromium_org/base/
cpu.h 23 SSE2,
cpu.cc 157 if (has_sse2()) return SSE2;
  /external/chromium_org/v8/test/cctest/
test-assembler-ia32.cc 164 if (!CpuFeatures::IsSupported(SSE2)) return;
172 CHECK(CpuFeatures::IsSupported(SSE2));
173 { CpuFeatureScope fscope(&assm, SSE2);
200 if (!CpuFeatures::IsSupported(SSE2)) return;
208 CHECK(CpuFeatures::IsSupported(SSE2));
209 CpuFeatureScope fscope(&assm, SSE2);
259 if (!CpuFeatures::IsSupported(SSE2)) return;
266 CpuFeatureScope fscope(&assm, SSE2);
305 if (!CpuFeatures::IsSupported(SSE2)) return;
311 CpuFeatureScope fscope(&assm, SSE2);
    [all...]
test-disasm-x64.cc 344 if (CpuFeatures::IsSupported(SSE2)) {
345 CpuFeatures::Scope fscope(SSE2);
390 if (CpuFeatures::IsSupported(SSE2)) {
391 CpuFeatures::Scope fscope(SSE2);
  /external/chromium_org/media/base/simd/
scale_yuv_to_rgb_sse2_x64.asm 9 ; This file uses MMX, SSE2 and instructions.
12 CPU SSE2
  /external/libvpx/libvpx/test/
pp_filter_test.cc 110 INSTANTIATE_TEST_CASE_P(SSE2, Vp8PostProcessingFilterTest,
subtract_test.cc 116 INSTANTIATE_TEST_CASE_P(SSE2, SubtractBlockTest,
vp9_subtract_test.cc 97 INSTANTIATE_TEST_CASE_P(SSE2, VP9SubtractBlockTest,
intrapred_test.cc 278 INSTANTIATE_TEST_CASE_P(SSE2, IntraPredYTest,
355 INSTANTIATE_TEST_CASE_P(SSE2, IntraPredUVTest,
sixtap_predict_test.cc 212 SSE2, SixtapPredictTest, ::testing::Values(
  /external/oprofile/events/i386/atom/
unit_masks 87 0x04 packed_double Retired Streaming SIMD Extensions 2 (SSE2) packed-double instructions
88 0x08 scalar_double Retired Streaming SIMD Extensions 2 (SSE2) scalar-double instructions
89 0x10 vector Retired Streaming SIMD Extensions 2 (SSE2) vector instructions
94 0x04 packed_double Retired computational Streaming SIMD Extensions 2 (SSE2) packed-double instructions
95 0x08 scalar_double Retired computational Streaming SIMD Extensions 2 (SSE2) scalar-double instructions
  /external/llvm/lib/Target/X86/
X86Subtarget.h 45 NoMMXSSE, MMX, SSE1, SSE2, SSE3, SSSE3, SSE41, SSE42, AVX, AVX2, AVX512
63 /// X86SSELevel - MMX, SSE1, SSE2, SSE3, SSSE3, SSE41, SSE42, or
254 bool hasSSE2() const { return X86SSELevel >= SSE2; }
X86Subtarget.cpp 210 if ((EDX >> 26) & 1) { X86SSELevel = SSE2; ToggleFeature(X86::FeatureSSE2); }
395 // SSE2 can be turned off explicitly.)
399 FullFS = "+64bit,+sse2," + FullFS;
401 FullFS = "+64bit,+sse2";
422 if (X86SSELevel < SSE2) {
423 X86SSELevel = SSE2;

Completed in 540 milliseconds

1 2 3