OLD | NEW |
1 // Copyright 2011 the V8 project authors. All rights reserved. | 1 // Copyright 2011 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 299 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
310 | 310 |
311 // Input frame description. | 311 // Input frame description. |
312 FrameDescription* input_; | 312 FrameDescription* input_; |
313 // Number of output frames. | 313 // Number of output frames. |
314 int output_count_; | 314 int output_count_; |
315 // Array of output frame descriptions. | 315 // Array of output frame descriptions. |
316 FrameDescription** output_; | 316 FrameDescription** output_; |
317 | 317 |
318 List<HeapNumberMaterializationDescriptor> deferred_heap_numbers_; | 318 List<HeapNumberMaterializationDescriptor> deferred_heap_numbers_; |
319 | 319 |
320 static int table_entry_size_; | 320 static const int table_entry_size_; |
321 | 321 |
322 friend class FrameDescription; | 322 friend class FrameDescription; |
323 friend class DeoptimizingCodeListNode; | 323 friend class DeoptimizingCodeListNode; |
324 friend class DeoptimizedFrameInfo; | 324 friend class DeoptimizedFrameInfo; |
325 }; | 325 }; |
326 | 326 |
327 | 327 |
328 class FrameDescription { | 328 class FrameDescription { |
329 public: | 329 public: |
330 FrameDescription(uint32_t frame_size, | 330 FrameDescription(uint32_t frame_size, |
(...skipping 384 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
715 Object** parameters_; | 715 Object** parameters_; |
716 Object** expression_stack_; | 716 Object** expression_stack_; |
717 | 717 |
718 friend class Deoptimizer; | 718 friend class Deoptimizer; |
719 }; | 719 }; |
720 #endif | 720 #endif |
721 | 721 |
722 } } // namespace v8::internal | 722 } } // namespace v8::internal |
723 | 723 |
724 #endif // V8_DEOPTIMIZER_H_ | 724 #endif // V8_DEOPTIMIZER_H_ |
OLD | NEW |