Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(8)

Side by Side Diff: src/ia32/full-codegen-ia32.cc

Issue 12391055: Cleaned up CpuFeature scope handling. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: ARM and MIPS support Created 7 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 2969 matching lines...) Expand 10 before | Expand all | Expand 10 after
2980 __ mov(eax, ContextOperand(context_register(), Context::GLOBAL_OBJECT_INDEX)); 2980 __ mov(eax, ContextOperand(context_register(), Context::GLOBAL_OBJECT_INDEX));
2981 __ mov(eax, FieldOperand(eax, GlobalObject::kNativeContextOffset)); 2981 __ mov(eax, FieldOperand(eax, GlobalObject::kNativeContextOffset));
2982 __ mov(Operand(esp, 0), eax); 2982 __ mov(Operand(esp, 0), eax);
2983 __ CallCFunction(ExternalReference::random_uint32_function(isolate()), 1); 2983 __ CallCFunction(ExternalReference::random_uint32_function(isolate()), 1);
2984 2984
2985 // Convert 32 random bits in eax to 0.(32 random bits) in a double 2985 // Convert 32 random bits in eax to 0.(32 random bits) in a double
2986 // by computing: 2986 // by computing:
2987 // ( 1.(20 0s)(32 random bits) x 2^20 ) - (1.0 x 2^20)). 2987 // ( 1.(20 0s)(32 random bits) x 2^20 ) - (1.0 x 2^20)).
2988 // This is implemented on both SSE2 and FPU. 2988 // This is implemented on both SSE2 and FPU.
2989 if (CpuFeatures::IsSupported(SSE2)) { 2989 if (CpuFeatures::IsSupported(SSE2)) {
2990 CpuFeatures::Scope fscope(SSE2); 2990 CpuFeatureScope fscope(masm(), SSE2);
2991 __ mov(ebx, Immediate(0x49800000)); // 1.0 x 2^20 as single. 2991 __ mov(ebx, Immediate(0x49800000)); // 1.0 x 2^20 as single.
2992 __ movd(xmm1, ebx); 2992 __ movd(xmm1, ebx);
2993 __ movd(xmm0, eax); 2993 __ movd(xmm0, eax);
2994 __ cvtss2sd(xmm1, xmm1); 2994 __ cvtss2sd(xmm1, xmm1);
2995 __ xorps(xmm0, xmm1); 2995 __ xorps(xmm0, xmm1);
2996 __ subsd(xmm0, xmm1); 2996 __ subsd(xmm0, xmm1);
2997 __ movdbl(FieldOperand(edi, HeapNumber::kValueOffset), xmm0); 2997 __ movdbl(FieldOperand(edi, HeapNumber::kValueOffset), xmm0);
2998 } else { 2998 } else {
2999 // 0x4130000000000000 is 1.0 x 2^20 as a double. 2999 // 0x4130000000000000 is 1.0 x 2^20 as a double.
3000 __ mov(FieldOperand(edi, HeapNumber::kExponentOffset), 3000 __ mov(FieldOperand(edi, HeapNumber::kExponentOffset),
(...skipping 1565 matching lines...) Expand 10 before | Expand all | Expand 10 after
4566 *stack_depth = 0; 4566 *stack_depth = 0;
4567 *context_length = 0; 4567 *context_length = 0;
4568 return previous_; 4568 return previous_;
4569 } 4569 }
4570 4570
4571 #undef __ 4571 #undef __
4572 4572
4573 } } // namespace v8::internal 4573 } } // namespace v8::internal
4574 4574
4575 #endif // V8_TARGET_ARCH_IA32 4575 #endif // V8_TARGET_ARCH_IA32
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698