| OLD | NEW |
| 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 394 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 405 CodeStubInterfaceDescriptor* desc); | 405 CodeStubInterfaceDescriptor* desc); |
| 406 | 406 |
| 407 // Fill the given output frame's double registers with the original values | 407 // Fill the given output frame's double registers with the original values |
| 408 // from the input frame's double registers. | 408 // from the input frame's double registers. |
| 409 void CopyDoubleRegisters(FrameDescription* output_frame); | 409 void CopyDoubleRegisters(FrameDescription* output_frame); |
| 410 | 410 |
| 411 // Determines whether the input frame contains alignment padding by looking | 411 // Determines whether the input frame contains alignment padding by looking |
| 412 // at the dynamic alignment state slot inside the frame. | 412 // at the dynamic alignment state slot inside the frame. |
| 413 bool HasAlignmentPadding(JSFunction* function); | 413 bool HasAlignmentPadding(JSFunction* function); |
| 414 | 414 |
| 415 // Select the version of NotifyStubFailure builtin that either saves or |
| 416 // doesn't save the double registers depending on CPU features. |
| 417 Code* NotifyStubFailureBuiltin(); |
| 418 |
| 415 Isolate* isolate_; | 419 Isolate* isolate_; |
| 416 JSFunction* function_; | 420 JSFunction* function_; |
| 417 Code* compiled_code_; | 421 Code* compiled_code_; |
| 418 unsigned bailout_id_; | 422 unsigned bailout_id_; |
| 419 BailoutType bailout_type_; | 423 BailoutType bailout_type_; |
| 420 Address from_; | 424 Address from_; |
| 421 int fp_to_sp_delta_; | 425 int fp_to_sp_delta_; |
| 422 int has_alignment_padding_; | 426 int has_alignment_padding_; |
| 423 | 427 |
| 424 // Input frame description. | 428 // Input frame description. |
| (...skipping 507 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 932 Object** expression_stack_; | 936 Object** expression_stack_; |
| 933 int source_position_; | 937 int source_position_; |
| 934 | 938 |
| 935 friend class Deoptimizer; | 939 friend class Deoptimizer; |
| 936 }; | 940 }; |
| 937 #endif | 941 #endif |
| 938 | 942 |
| 939 } } // namespace v8::internal | 943 } } // namespace v8::internal |
| 940 | 944 |
| 941 #endif // V8_DEOPTIMIZER_H_ | 945 #endif // V8_DEOPTIMIZER_H_ |
| OLD | NEW |