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 433 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
444 // Materialized objects. Only used during heap object materialization. | 444 // Materialized objects. Only used during heap object materialization. |
445 List<Handle<Object> >* materialized_values_; | 445 List<Handle<Object> >* materialized_values_; |
446 List<Handle<Object> >* materialized_objects_; | 446 List<Handle<Object> >* materialized_objects_; |
447 int materialization_value_index_; | 447 int materialization_value_index_; |
448 int materialization_object_index_; | 448 int materialization_object_index_; |
449 | 449 |
450 #ifdef DEBUG | 450 #ifdef DEBUG |
451 DisallowHeapAllocation* disallow_heap_allocation_; | 451 DisallowHeapAllocation* disallow_heap_allocation_; |
452 #endif // DEBUG | 452 #endif // DEBUG |
453 | 453 |
454 bool trace_; | 454 CodeTracer::Scope* trace_scope_; |
455 | 455 |
456 static const int table_entry_size_; | 456 static const int table_entry_size_; |
457 | 457 |
458 friend class FrameDescription; | 458 friend class FrameDescription; |
459 friend class DeoptimizedFrameInfo; | 459 friend class DeoptimizedFrameInfo; |
460 }; | 460 }; |
461 | 461 |
462 | 462 |
463 class FrameDescription { | 463 class FrameDescription { |
464 public: | 464 public: |
(...skipping 459 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
924 Object** expression_stack_; | 924 Object** expression_stack_; |
925 int source_position_; | 925 int source_position_; |
926 | 926 |
927 friend class Deoptimizer; | 927 friend class Deoptimizer; |
928 }; | 928 }; |
929 #endif | 929 #endif |
930 | 930 |
931 } } // namespace v8::internal | 931 } } // namespace v8::internal |
932 | 932 |
933 #endif // V8_DEOPTIMIZER_H_ | 933 #endif // V8_DEOPTIMIZER_H_ |
OLD | NEW |