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

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

Issue 1149943009: Shrink some fields and add some bounds checks. (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
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_OBJECT_H_ 5 #ifndef VM_OBJECT_H_
6 #define VM_OBJECT_H_ 6 #define VM_OBJECT_H_
7 7
8 #include "include/dart_api.h" 8 #include "include/dart_api.h"
9 #include "platform/assert.h" 9 #include "platform/assert.h"
10 #include "platform/utils.h" 10 #include "platform/utils.h"
(...skipping 4700 matching lines...) Expand 10 before | Expand all | Expand 10 after
4711 friend class TypedDataView; 4711 friend class TypedDataView;
4712 }; 4712 };
4713 4713
4714 4714
4715 class LibraryPrefix : public Instance { 4715 class LibraryPrefix : public Instance {
4716 public: 4716 public:
4717 RawString* name() const { return raw_ptr()->name_; } 4717 RawString* name() const { return raw_ptr()->name_; }
4718 virtual RawString* DictionaryName() const { return name(); } 4718 virtual RawString* DictionaryName() const { return name(); }
4719 4719
4720 RawArray* imports() const { return raw_ptr()->imports_; } 4720 RawArray* imports() const { return raw_ptr()->imports_; }
4721 int32_t num_imports() const { return raw_ptr()->num_imports_; } 4721 intptr_t num_imports() const { return raw_ptr()->num_imports_; }
4722 RawLibrary* importer() const { return raw_ptr()->importer_; } 4722 RawLibrary* importer() const { return raw_ptr()->importer_; }
4723 4723
4724 RawInstance* LoadError() const; 4724 RawInstance* LoadError() const;
4725 4725
4726 bool ContainsLibrary(const Library& library) const; 4726 bool ContainsLibrary(const Library& library) const;
4727 RawLibrary* GetLibrary(int index) const; 4727 RawLibrary* GetLibrary(int index) const;
4728 void AddImport(const Namespace& import) const; 4728 void AddImport(const Namespace& import) const;
4729 RawObject* LookupObject(const String& name) const; 4729 RawObject* LookupObject(const String& name) const;
4730 RawClass* LookupClass(const String& class_name) const; 4730 RawClass* LookupClass(const String& class_name) const;
4731 4731
(...skipping 3112 matching lines...) Expand 10 before | Expand all | Expand 10 after
7844 7844
7845 7845
7846 RawObject* MegamorphicCache::GetTargetFunction(const Array& array, 7846 RawObject* MegamorphicCache::GetTargetFunction(const Array& array,
7847 intptr_t index) { 7847 intptr_t index) {
7848 return array.At((index * kEntryLength) + kTargetFunctionIndex); 7848 return array.At((index * kEntryLength) + kTargetFunctionIndex);
7849 } 7849 }
7850 7850
7851 } // namespace dart 7851 } // namespace dart
7852 7852
7853 #endif // VM_OBJECT_H_ 7853 #endif // VM_OBJECT_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698