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

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

Issue 132193005: Merged r16772, r18000, r18030, r18298, r18319 into 3.21 branch. (Closed) Base URL: https://v8.googlecode.com/svn/branches/3.21
Patch Set: Created 6 years, 11 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/builtins-x64.cc ('k') | src/x64/lithium-codegen-x64.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 // 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 192 matching lines...) Expand 10 before | Expand all | Expand 10 after
203 } 203 }
204 } 204 }
205 205
206 206
207 bool Deoptimizer::HasAlignmentPadding(JSFunction* function) { 207 bool Deoptimizer::HasAlignmentPadding(JSFunction* function) {
208 // There is no dynamic alignment padding on x64 in the input frame. 208 // There is no dynamic alignment padding on x64 in the input frame.
209 return false; 209 return false;
210 } 210 }
211 211
212 212
213 Code* Deoptimizer::NotifyStubFailureBuiltin() {
214 return isolate_->builtins()->builtin(Builtins::kNotifyStubFailureSaveDoubles);
215 }
216
217
213 #define __ masm()-> 218 #define __ masm()->
214 219
215 void Deoptimizer::EntryGenerator::Generate() { 220 void Deoptimizer::EntryGenerator::Generate() {
216 GeneratePrologue(); 221 GeneratePrologue();
217 222
218 // Save all general purpose registers before messing with them. 223 // Save all general purpose registers before messing with them.
219 const int kNumberOfRegisters = Register::kNumRegisters; 224 const int kNumberOfRegisters = Register::kNumRegisters;
220 225
221 const int kDoubleRegsSize = kDoubleSize * 226 const int kDoubleRegsSize = kDoubleSize *
222 XMMRegister::NumAllocatableRegisters(); 227 XMMRegister::NumAllocatableRegisters();
(...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after
413 SetFrameSlot(offset, value); 418 SetFrameSlot(offset, value);
414 } 419 }
415 420
416 421
417 #undef __ 422 #undef __
418 423
419 424
420 } } // namespace v8::internal 425 } } // namespace v8::internal
421 426
422 #endif // V8_TARGET_ARCH_X64 427 #endif // V8_TARGET_ARCH_X64
OLDNEW
« no previous file with comments | « src/x64/builtins-x64.cc ('k') | src/x64/lithium-codegen-x64.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698