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

Side by Side Diff: src/x64/deoptimizer-x64.cc

Issue 275433004: Require SSE2 support for the ia32 port. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 7 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/x64/code-stubs-x64.cc ('k') | test/cctest/test-assembler-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 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "v8.h" 5 #include "v8.h"
6 6
7 #if V8_TARGET_ARCH_X64 7 #if V8_TARGET_ARCH_X64
8 8
9 #include "codegen.h" 9 #include "codegen.h"
10 #include "deoptimizer.h" 10 #include "deoptimizer.h"
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after
122 } 122 }
123 } 123 }
124 124
125 125
126 bool Deoptimizer::HasAlignmentPadding(JSFunction* function) { 126 bool Deoptimizer::HasAlignmentPadding(JSFunction* function) {
127 // There is no dynamic alignment padding on x64 in the input frame. 127 // There is no dynamic alignment padding on x64 in the input frame.
128 return false; 128 return false;
129 } 129 }
130 130
131 131
132 Code* Deoptimizer::NotifyStubFailureBuiltin() {
133 return isolate_->builtins()->builtin(Builtins::kNotifyStubFailureSaveDoubles);
134 }
135
136
137 #define __ masm()-> 132 #define __ masm()->
138 133
139 void Deoptimizer::EntryGenerator::Generate() { 134 void Deoptimizer::EntryGenerator::Generate() {
140 GeneratePrologue(); 135 GeneratePrologue();
141 136
142 // Save all general purpose registers before messing with them. 137 // Save all general purpose registers before messing with them.
143 const int kNumberOfRegisters = Register::kNumRegisters; 138 const int kNumberOfRegisters = Register::kNumRegisters;
144 139
145 const int kDoubleRegsSize = kDoubleSize * 140 const int kDoubleRegsSize = kDoubleSize *
146 XMMRegister::NumAllocatableRegisters(); 141 XMMRegister::NumAllocatableRegisters();
(...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after
351 UNREACHABLE(); 346 UNREACHABLE();
352 } 347 }
353 348
354 349
355 #undef __ 350 #undef __
356 351
357 352
358 } } // namespace v8::internal 353 } } // namespace v8::internal
359 354
360 #endif // V8_TARGET_ARCH_X64 355 #endif // V8_TARGET_ARCH_X64
OLDNEW
« no previous file with comments | « src/x64/code-stubs-x64.cc ('k') | test/cctest/test-assembler-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698