| 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 327 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 338 void DoComputeOutputFrames(); | 338 void DoComputeOutputFrames(); |
| 339 void DoComputeOsrOutputFrame(); | 339 void DoComputeOsrOutputFrame(); |
| 340 void DoComputeJSFrame(TranslationIterator* iterator, int frame_index); | 340 void DoComputeJSFrame(TranslationIterator* iterator, int frame_index); |
| 341 void DoComputeArgumentsAdaptorFrame(TranslationIterator* iterator, | 341 void DoComputeArgumentsAdaptorFrame(TranslationIterator* iterator, |
| 342 int frame_index); | 342 int frame_index); |
| 343 void DoComputeConstructStubFrame(TranslationIterator* iterator, | 343 void DoComputeConstructStubFrame(TranslationIterator* iterator, |
| 344 int frame_index); | 344 int frame_index); |
| 345 void DoComputeAccessorStubFrame(TranslationIterator* iterator, | 345 void DoComputeAccessorStubFrame(TranslationIterator* iterator, |
| 346 int frame_index, | 346 int frame_index, |
| 347 bool is_setter_stub_frame); | 347 bool is_setter_stub_frame); |
| 348 void DoCompiledStubFrame(TranslationIterator* iterator, | 348 void DoComputeCompiledStubFrame(TranslationIterator* iterator, |
| 349 int frame_index); | 349 int frame_index); |
| 350 void DoTranslateCommand(TranslationIterator* iterator, | 350 void DoTranslateCommand(TranslationIterator* iterator, |
| 351 int frame_index, | 351 int frame_index, |
| 352 unsigned output_offset); | 352 unsigned output_offset); |
| 353 // Translate a command for OSR. Updates the input offset to be used for | 353 // Translate a command for OSR. Updates the input offset to be used for |
| 354 // the next command. Returns false if translation of the command failed | 354 // the next command. Returns false if translation of the command failed |
| 355 // (e.g., a number conversion failed) and may or may not have updated the | 355 // (e.g., a number conversion failed) and may or may not have updated the |
| 356 // input offset. | 356 // input offset. |
| 357 bool DoOsrTranslateCommand(TranslationIterator* iterator, | 357 bool DoOsrTranslateCommand(TranslationIterator* iterator, |
| 358 int* input_offset); | 358 int* input_offset); |
| 359 | 359 |
| (...skipping 518 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 878 Object** expression_stack_; | 878 Object** expression_stack_; |
| 879 int source_position_; | 879 int source_position_; |
| 880 | 880 |
| 881 friend class Deoptimizer; | 881 friend class Deoptimizer; |
| 882 }; | 882 }; |
| 883 #endif | 883 #endif |
| 884 | 884 |
| 885 } } // namespace v8::internal | 885 } } // namespace v8::internal |
| 886 | 886 |
| 887 #endif // V8_DEOPTIMIZER_H_ | 887 #endif // V8_DEOPTIMIZER_H_ |
| OLD | NEW |