OLD | NEW |
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 2268 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2279 | 2279 |
2280 // Library scope name dictionary. | 2280 // Library scope name dictionary. |
2281 // | 2281 // |
2282 // TODO(turnidge): The Lookup functions are not consistent in how | 2282 // TODO(turnidge): The Lookup functions are not consistent in how |
2283 // they deal with private names. Go through and make them a bit | 2283 // they deal with private names. Go through and make them a bit |
2284 // more regular. | 2284 // more regular. |
2285 void AddClass(const Class& cls) const; | 2285 void AddClass(const Class& cls) const; |
2286 void AddObject(const Object& obj, const String& name) const; | 2286 void AddObject(const Object& obj, const String& name) const; |
2287 void ReplaceObject(const Object& obj, const String& name) const; | 2287 void ReplaceObject(const Object& obj, const String& name) const; |
2288 RawObject* LookupExport(const String& name) const; | 2288 RawObject* LookupExport(const String& name) const; |
2289 RawObject* LookupObject(const String& name) const; | 2289 RawObject* LookupObject(const String& name, |
2290 RawClass* LookupClass(const String& name) const; | 2290 String* ambiguity_error_msg) const; |
2291 RawClass* LookupClassAllowPrivate(const String& name) const; | 2291 RawObject* LookupObjectAllowPrivate(const String& name, |
| 2292 String* ambiguity_error_msg) const; |
| 2293 RawObject* LookupLocalObjectAllowPrivate(const String& name) const; |
2292 RawObject* LookupLocalObject(const String& name) const; | 2294 RawObject* LookupLocalObject(const String& name) const; |
| 2295 RawObject* LookupImportedObject(const String& name, |
| 2296 String* ambiguity_error_msg) const; |
| 2297 RawClass* LookupClass(const String& name, String* ambiguity_error_msg) const; |
| 2298 RawClass* LookupClassAllowPrivate(const String& name, |
| 2299 String* ambiguity_error_msg) const; |
2293 RawClass* LookupLocalClass(const String& name) const; | 2300 RawClass* LookupLocalClass(const String& name) const; |
2294 RawField* LookupFieldAllowPrivate(const String& name) const; | 2301 RawField* LookupFieldAllowPrivate(const String& name, |
| 2302 String* ambiguity_error_msg) const; |
2295 RawField* LookupLocalField(const String& name) const; | 2303 RawField* LookupLocalField(const String& name) const; |
2296 RawFunction* LookupFunctionAllowPrivate(const String& name) const; | 2304 RawFunction* LookupFunctionAllowPrivate(const String& name, |
| 2305 String* ambiguity_error_msg) const; |
2297 RawFunction* LookupLocalFunction(const String& name) const; | 2306 RawFunction* LookupLocalFunction(const String& name) const; |
2298 RawLibraryPrefix* LookupLocalLibraryPrefix(const String& name) const; | 2307 RawLibraryPrefix* LookupLocalLibraryPrefix(const String& name) const; |
2299 RawScript* LookupScript(const String& url) const; | 2308 RawScript* LookupScript(const String& url) const; |
2300 RawArray* LoadedScripts() const; | 2309 RawArray* LoadedScripts() const; |
2301 | 2310 |
2302 void AddAnonymousClass(const Class& cls) const; | 2311 void AddAnonymousClass(const Class& cls) const; |
2303 | 2312 |
2304 void AddExport(const Namespace& ns) const; | 2313 void AddExport(const Namespace& ns) const; |
2305 | 2314 |
2306 void AddClassMetadata(const Class& cls, intptr_t token_pos) const; | 2315 void AddClassMetadata(const Class& cls, intptr_t token_pos) const; |
(...skipping 3700 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
6007 | 6016 |
6008 | 6017 |
6009 RawObject* MegamorphicCache::GetTargetFunction(const Array& array, | 6018 RawObject* MegamorphicCache::GetTargetFunction(const Array& array, |
6010 intptr_t index) { | 6019 intptr_t index) { |
6011 return array.At((index * kEntryLength) + kTargetFunctionIndex); | 6020 return array.At((index * kEntryLength) + kTargetFunctionIndex); |
6012 } | 6021 } |
6013 | 6022 |
6014 } // namespace dart | 6023 } // namespace dart |
6015 | 6024 |
6016 #endif // VM_OBJECT_H_ | 6025 #endif // VM_OBJECT_H_ |
OLD | NEW |