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

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

Issue 22685007: Implement updated method overriding rules in the vm. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 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
OLDNEW
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2013, 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_INTERMEDIATE_LANGUAGE_H_ 5 #ifndef VM_INTERMEDIATE_LANGUAGE_H_
6 #define VM_INTERMEDIATE_LANGUAGE_H_ 6 #define VM_INTERMEDIATE_LANGUAGE_H_
7 7
8 #include "vm/allocation.h" 8 #include "vm/allocation.h"
9 #include "vm/ast.h" 9 #include "vm/ast.h"
10 #include "vm/growable_array.h" 10 #include "vm/growable_array.h"
(...skipping 21 matching lines...) Expand all
32 class LocalVariable; 32 class LocalVariable;
33 class ParsedFunction; 33 class ParsedFunction;
34 class Range; 34 class Range;
35 35
36 36
37 // TODO(srdjan): Unify with INTRINSIC_LIST. 37 // TODO(srdjan): Unify with INTRINSIC_LIST.
38 // (class-name, function-name, recognized enum, fingerprint). 38 // (class-name, function-name, recognized enum, fingerprint).
39 // See intrinsifier for fingerprint computation. 39 // See intrinsifier for fingerprint computation.
40 #define RECOGNIZED_LIST(V) \ 40 #define RECOGNIZED_LIST(V) \
41 V(::, identical, ObjectIdentical, 1018911876) \ 41 V(::, identical, ObjectIdentical, 1018911876) \
42 V(Object, Object., ObjectConstructor, 2030609793) \ 42 V(Object, Object., ObjectConstructor, 502077293) \
43 V(Object, get:_cid, ObjectCid, 732498573) \ 43 V(Object, get:_cid, ObjectCid, 732498573) \
44 V(_ObjectArray, get:length, ObjectArrayLength, 405297088) \ 44 V(_ObjectArray, get:length, ObjectArrayLength, 405297088) \
45 V(_ImmutableArray, get:length, ImmutableArrayLength, 433698233) \ 45 V(_ImmutableArray, get:length, ImmutableArrayLength, 433698233) \
46 V(_TypedList, get:length, TypedDataLength, 1004567191) \ 46 V(_TypedList, get:length, TypedDataLength, 1004567191) \
47 V(_TypedList, _getInt8, ByteArrayBaseGetInt8, 1219036864) \ 47 V(_TypedList, _getInt8, ByteArrayBaseGetInt8, 1219036864) \
48 V(_TypedList, _getUint8, ByteArrayBaseGetUint8, 1219036864) \ 48 V(_TypedList, _getUint8, ByteArrayBaseGetUint8, 1219036864) \
49 V(_TypedList, _getInt16, ByteArrayBaseGetInt16, 1219036864) \ 49 V(_TypedList, _getInt16, ByteArrayBaseGetInt16, 1219036864) \
50 V(_TypedList, _getUint16, ByteArrayBaseGetUint16, 1219036864) \ 50 V(_TypedList, _getUint16, ByteArrayBaseGetUint16, 1219036864) \
51 V(_TypedList, _getInt32, ByteArrayBaseGetInt32, 1219036864) \ 51 V(_TypedList, _getInt32, ByteArrayBaseGetInt32, 1219036864) \
52 V(_TypedList, _getUint32, ByteArrayBaseGetUint32, 1219036864) \ 52 V(_TypedList, _getUint32, ByteArrayBaseGetUint32, 1219036864) \
(...skipping 6564 matching lines...) Expand 10 before | Expand all | Expand 10 after
6617 ForwardInstructionIterator* current_iterator_; 6617 ForwardInstructionIterator* current_iterator_;
6618 6618
6619 private: 6619 private:
6620 DISALLOW_COPY_AND_ASSIGN(FlowGraphVisitor); 6620 DISALLOW_COPY_AND_ASSIGN(FlowGraphVisitor);
6621 }; 6621 };
6622 6622
6623 6623
6624 } // namespace dart 6624 } // namespace dart
6625 6625
6626 #endif // VM_INTERMEDIATE_LANGUAGE_H_ 6626 #endif // VM_INTERMEDIATE_LANGUAGE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698