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

Side by Side Diff: src/deoptimizer.h

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/date.js ('k') | src/deoptimizer.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 // 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 431 matching lines...) Expand 10 before | Expand all | Expand 10 after
442 CodeStubInterfaceDescriptor* desc); 442 CodeStubInterfaceDescriptor* desc);
443 443
444 // Fill the given output frame's double registers with the original values 444 // Fill the given output frame's double registers with the original values
445 // from the input frame's double registers. 445 // from the input frame's double registers.
446 void CopyDoubleRegisters(FrameDescription* output_frame); 446 void CopyDoubleRegisters(FrameDescription* output_frame);
447 447
448 // Determines whether the input frame contains alignment padding by looking 448 // Determines whether the input frame contains alignment padding by looking
449 // at the dynamic alignment state slot inside the frame. 449 // at the dynamic alignment state slot inside the frame.
450 bool HasAlignmentPadding(JSFunction* function); 450 bool HasAlignmentPadding(JSFunction* function);
451 451
452 // Select the version of NotifyStubFailure builtin that either saves or
453 // doesn't save the double registers depending on CPU features.
454 Code* NotifyStubFailureBuiltin();
455
452 Isolate* isolate_; 456 Isolate* isolate_;
453 JSFunction* function_; 457 JSFunction* function_;
454 Code* compiled_code_; 458 Code* compiled_code_;
455 unsigned bailout_id_; 459 unsigned bailout_id_;
456 BailoutType bailout_type_; 460 BailoutType bailout_type_;
457 Address from_; 461 Address from_;
458 int fp_to_sp_delta_; 462 int fp_to_sp_delta_;
459 int has_alignment_padding_; 463 int has_alignment_padding_;
460 464
461 // Input frame description. 465 // Input frame description.
(...skipping 491 matching lines...) Expand 10 before | Expand all | Expand 10 after
953 Object** expression_stack_; 957 Object** expression_stack_;
954 int source_position_; 958 int source_position_;
955 959
956 friend class Deoptimizer; 960 friend class Deoptimizer;
957 }; 961 };
958 #endif 962 #endif
959 963
960 } } // namespace v8::internal 964 } } // namespace v8::internal
961 965
962 #endif // V8_DEOPTIMIZER_H_ 966 #endif // V8_DEOPTIMIZER_H_
OLDNEW
« no previous file with comments | « src/date.js ('k') | src/deoptimizer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698