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

Side by Side Diff: src/mips/deoptimizer-mips.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/mips/code-stubs-mips.cc ('k') | src/platform.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 1
2 // Copyright 2011 the V8 project authors. All rights reserved. 2 // Copyright 2011 the V8 project authors. All rights reserved.
3 // Use of this source code is governed by a BSD-style license that can be 3 // Use of this source code is governed by a BSD-style license that can be
4 // found in the LICENSE file. 4 // found in the LICENSE file.
5 5
6 #include "v8.h" 6 #include "v8.h"
7 7
8 #include "codegen.h" 8 #include "codegen.h"
9 #include "deoptimizer.h" 9 #include "deoptimizer.h"
10 #include "full-codegen.h" 10 #include "full-codegen.h"
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after
118 } 118 }
119 } 119 }
120 120
121 121
122 bool Deoptimizer::HasAlignmentPadding(JSFunction* function) { 122 bool Deoptimizer::HasAlignmentPadding(JSFunction* function) {
123 // There is no dynamic alignment padding on MIPS in the input frame. 123 // There is no dynamic alignment padding on MIPS in the input frame.
124 return false; 124 return false;
125 } 125 }
126 126
127 127
128 Code* Deoptimizer::NotifyStubFailureBuiltin() {
129 return isolate_->builtins()->builtin(Builtins::kNotifyStubFailureSaveDoubles);
130 }
131
132
133 #define __ masm()-> 128 #define __ masm()->
134 129
135 130
136 // This code tries to be close to ia32 code so that any changes can be 131 // This code tries to be close to ia32 code so that any changes can be
137 // easily ported. 132 // easily ported.
138 void Deoptimizer::EntryGenerator::Generate() { 133 void Deoptimizer::EntryGenerator::Generate() {
139 GeneratePrologue(); 134 GeneratePrologue();
140 135
141 // Unlike on ARM we don't save all the registers, just the useful ones. 136 // Unlike on ARM we don't save all the registers, just the useful ones.
142 // For the rest, there are gaps on the stack, so the offsets remain the same. 137 // For the rest, there are gaps on the stack, so the offsets remain the same.
(...skipping 231 matching lines...) Expand 10 before | Expand all | Expand 10 after
374 void FrameDescription::SetCallerConstantPool(unsigned offset, intptr_t value) { 369 void FrameDescription::SetCallerConstantPool(unsigned offset, intptr_t value) {
375 // No out-of-line constant pool support. 370 // No out-of-line constant pool support.
376 UNREACHABLE(); 371 UNREACHABLE();
377 } 372 }
378 373
379 374
380 #undef __ 375 #undef __
381 376
382 377
383 } } // namespace v8::internal 378 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/mips/code-stubs-mips.cc ('k') | src/platform.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698