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

Side by Side Diff: src/deoptimizer.h

Issue 7491052: Static state cleanup: add more consts. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 9 years, 4 months 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/codegen.cc ('k') | src/ia32/deoptimizer-ia32.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 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
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
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_
OLDNEW
« no previous file with comments | « src/codegen.cc ('k') | src/ia32/deoptimizer-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698