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

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

Issue 489923002: Tweaks to perf jitdump support (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 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 | « no previous file | runtime/vm/object.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_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 1857 matching lines...) Expand 10 before | Expand all | Expand 10 after
1868 bool AreValidArguments(intptr_t num_arguments, 1868 bool AreValidArguments(intptr_t num_arguments,
1869 const Array& argument_names, 1869 const Array& argument_names,
1870 String* error_message) const; 1870 String* error_message) const;
1871 bool AreValidArguments(const ArgumentsDescriptor& args_desc, 1871 bool AreValidArguments(const ArgumentsDescriptor& args_desc,
1872 String* error_message) const; 1872 String* error_message) const;
1873 1873
1874 // Fully qualified name uniquely identifying the function under gdb and during 1874 // Fully qualified name uniquely identifying the function under gdb and during
1875 // ast printing. The special ':' character, if present, is replaced by '_'. 1875 // ast printing. The special ':' character, if present, is replaced by '_'.
1876 const char* ToFullyQualifiedCString() const; 1876 const char* ToFullyQualifiedCString() const;
1877 1877
1878 const char* ToLibNamePrefixedQualifiedCString() const;
1879
1878 const char* ToQualifiedCString() const; 1880 const char* ToQualifiedCString() const;
1879 1881
1880 // Returns true if this function has parameters that are compatible with the 1882 // Returns true if this function has parameters that are compatible with the
1881 // parameters of the other function in order for this function to override the 1883 // parameters of the other function in order for this function to override the
1882 // other function. 1884 // other function.
1883 bool HasCompatibleParametersWith(const Function& other, 1885 bool HasCompatibleParametersWith(const Function& other,
1884 Error* bound_error) const; 1886 Error* bound_error) const;
1885 1887
1886 // Returns true if the type of this function is a subtype of the type of 1888 // Returns true if the type of this function is a subtype of the type of
1887 // the other function. 1889 // the other function.
(...skipping 5423 matching lines...) Expand 10 before | Expand all | Expand 10 after
7311 7313
7312 7314
7313 RawObject* MegamorphicCache::GetTargetFunction(const Array& array, 7315 RawObject* MegamorphicCache::GetTargetFunction(const Array& array,
7314 intptr_t index) { 7316 intptr_t index) {
7315 return array.At((index * kEntryLength) + kTargetFunctionIndex); 7317 return array.At((index * kEntryLength) + kTargetFunctionIndex);
7316 } 7318 }
7317 7319
7318 } // namespace dart 7320 } // namespace dart
7319 7321
7320 #endif // VM_OBJECT_H_ 7322 #endif // VM_OBJECT_H_
OLDNEW
« no previous file with comments | « no previous file | runtime/vm/object.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698