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

Side by Side Diff: runtime/vm/stack_frame.h

Issue 1175523002: Object pool with support for untagged entries. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years, 6 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
« no previous file with comments | « runtime/vm/raw_object_snapshot.cc ('k') | runtime/vm/stack_frame.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 (c) 2011, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 #ifndef VM_STACK_FRAME_H_ 5 #ifndef VM_STACK_FRAME_H_
6 #define VM_STACK_FRAME_H_ 6 #define VM_STACK_FRAME_H_
7 7
8 #include "vm/allocation.h" 8 #include "vm/allocation.h"
9 #include "vm/object.h" 9 #include "vm/object.h"
10 #include "vm/stub_code.h" 10 #include "vm/stub_code.h"
(...skipping 305 matching lines...) Expand 10 before | Expand all | Expand 10 after
316 private: 316 private:
317 void SetDone() { index_ = -1; } 317 void SetDone() { index_ = -1; }
318 318
319 intptr_t index_; 319 intptr_t index_;
320 intptr_t num_materializations_; 320 intptr_t num_materializations_;
321 Code& code_; 321 Code& code_;
322 TypedData& deopt_info_; 322 TypedData& deopt_info_;
323 Function& function_; 323 Function& function_;
324 uword pc_; 324 uword pc_;
325 GrowableArray<DeoptInstr*> deopt_instructions_; 325 GrowableArray<DeoptInstr*> deopt_instructions_;
326 Array& object_table_; 326 ObjectPool& object_table_;
327 327
328 DISALLOW_COPY_AND_ASSIGN(InlinedFunctionsIterator); 328 DISALLOW_COPY_AND_ASSIGN(InlinedFunctionsIterator);
329 }; 329 };
330 330
331 } // namespace dart 331 } // namespace dart
332 332
333 #endif // VM_STACK_FRAME_H_ 333 #endif // VM_STACK_FRAME_H_
OLDNEW
« no previous file with comments | « runtime/vm/raw_object_snapshot.cc ('k') | runtime/vm/stack_frame.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698