| 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 431 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 Loading... |
| 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_ |
| OLD | NEW |