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

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

Issue 9240014: Set breakpoint at url, line number (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: '' Created 8 years, 11 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 | « runtime/vm/parser.cc ('k') | runtime/vm/raw_object_snapshot.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) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, 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_RAW_OBJECT_H_ 5 #ifndef VM_RAW_OBJECT_H_
6 #define VM_RAW_OBJECT_H_ 6 #define VM_RAW_OBJECT_H_
7 7
8 #include "platform/assert.h" 8 #include "platform/assert.h"
9 #include "vm/globals.h" 9 #include "vm/globals.h"
10 #include "vm/snapshot.h" 10 #include "vm/snapshot.h"
(...skipping 476 matching lines...) Expand 10 before | Expand all | Expand 10 after
487 RawContextScope* context_scope_; 487 RawContextScope* context_scope_;
488 RawFunction* parent_function_; // Enclosing function of this local function. 488 RawFunction* parent_function_; // Enclosing function of this local function.
489 RawClass* signature_class_; // Only for closure or signature function. 489 RawClass* signature_class_; // Only for closure or signature function.
490 RawCode* closure_allocation_stub_; // Stub code for allocation of closures. 490 RawCode* closure_allocation_stub_; // Stub code for allocation of closures.
491 RawFunction* implicit_closure_function_; // Implicit closure function. 491 RawFunction* implicit_closure_function_; // Implicit closure function.
492 RawObject** to() { 492 RawObject** to() {
493 return reinterpret_cast<RawObject**>(&ptr()->implicit_closure_function_); 493 return reinterpret_cast<RawObject**>(&ptr()->implicit_closure_function_);
494 } 494 }
495 495
496 intptr_t token_index_; 496 intptr_t token_index_;
497 intptr_t end_token_index_;
497 intptr_t num_fixed_parameters_; 498 intptr_t num_fixed_parameters_;
498 intptr_t num_optional_parameters_; 499 intptr_t num_optional_parameters_;
499 intptr_t invocation_counter_; 500 intptr_t invocation_counter_;
500 intptr_t deoptimization_counter_; 501 intptr_t deoptimization_counter_;
501 Kind kind_; 502 Kind kind_;
502 bool is_static_; 503 bool is_static_;
503 bool is_const_; 504 bool is_const_;
504 bool is_optimizable_; 505 bool is_optimizable_;
505 }; 506 };
506 507
(...skipping 509 matching lines...) Expand 10 before | Expand all | Expand 10 after
1016 intptr_t type_; // Uninitialized, simple or complex. 1017 intptr_t type_; // Uninitialized, simple or complex.
1017 intptr_t flags_; // Represents global/local, case insensitive, multiline. 1018 intptr_t flags_; // Represents global/local, case insensitive, multiline.
1018 1019
1019 // Variable length data follows here. 1020 // Variable length data follows here.
1020 uint8_t data_[0]; 1021 uint8_t data_[0];
1021 }; 1022 };
1022 1023
1023 } // namespace dart 1024 } // namespace dart
1024 1025
1025 #endif // VM_RAW_OBJECT_H_ 1026 #endif // VM_RAW_OBJECT_H_
OLDNEW
« no previous file with comments | « runtime/vm/parser.cc ('k') | runtime/vm/raw_object_snapshot.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698