Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(222)

Side by Side Diff: src/deoptimizer.h

Issue 43273004: Allow redirecting disassembly and deoptimization traces into a file. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « src/d8.cc ('k') | src/deoptimizer.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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_
OLDNEW
« no previous file with comments | « src/d8.cc ('k') | src/deoptimizer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698