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

Side by Side Diff: src/ia32/cpu-ia32.cc

Issue 6685088: Merge isolates to bleeding_edge. (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 9 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
« no previous file with comments | « src/ia32/codegen-ia32.cc ('k') | src/ia32/debug-ia32.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2006-2008 the V8 project authors. All rights reserved. 1 // Copyright 2006-2008 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 24 matching lines...) Expand all
35 35
36 #if defined(V8_TARGET_ARCH_IA32) 36 #if defined(V8_TARGET_ARCH_IA32)
37 37
38 #include "cpu.h" 38 #include "cpu.h"
39 #include "macro-assembler.h" 39 #include "macro-assembler.h"
40 40
41 namespace v8 { 41 namespace v8 {
42 namespace internal { 42 namespace internal {
43 43
44 void CPU::Setup() { 44 void CPU::Setup() {
45 CpuFeatures::Clear(); 45 CpuFeatures* cpu_features = Isolate::Current()->cpu_features();
46 CpuFeatures::Probe(true); 46 cpu_features->Clear();
47 if (!CpuFeatures::IsSupported(SSE2) || Serializer::enabled()) { 47 cpu_features->Probe(true);
48 if (!cpu_features->IsSupported(SSE2) || Serializer::enabled()) {
48 V8::DisableCrankshaft(); 49 V8::DisableCrankshaft();
49 } 50 }
50 } 51 }
51 52
52 53
53 void CPU::FlushICache(void* start, size_t size) { 54 void CPU::FlushICache(void* start, size_t size) {
54 // No need to flush the instruction cache on Intel. On Intel instruction 55 // No need to flush the instruction cache on Intel. On Intel instruction
55 // cache flushing is only necessary when multiple cores running the same 56 // cache flushing is only necessary when multiple cores running the same
56 // code simultaneously. V8 (and JavaScript) is single threaded and when code 57 // code simultaneously. V8 (and JavaScript) is single threaded and when code
57 // is patched on an intel CPU the core performing the patching will have its 58 // is patched on an intel CPU the core performing the patching will have its
(...skipping 20 matching lines...) Expand all
78 // __asm { int 3 } 79 // __asm { int 3 }
79 __debugbreak(); 80 __debugbreak();
80 #else 81 #else
81 asm("int $3"); 82 asm("int $3");
82 #endif 83 #endif
83 } 84 }
84 85
85 } } // namespace v8::internal 86 } } // namespace v8::internal
86 87
87 #endif // V8_TARGET_ARCH_IA32 88 #endif // V8_TARGET_ARCH_IA32
OLDNEW
« no previous file with comments | « src/ia32/codegen-ia32.cc ('k') | src/ia32/debug-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698