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

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

Issue 13030003: Fix fingerprint mismatches (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 9 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 | no next file » | 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) 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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 V(_TypedList, _setInt32, ByteArrayBaseSetInt32, 287047804) \ 53 V(_TypedList, _setInt32, ByteArrayBaseSetInt32, 287047804) \
54 V(_TypedList, _setUint32, ByteArrayBaseSetUint32, 287047804) \ 54 V(_TypedList, _setUint32, ByteArrayBaseSetUint32, 287047804) \
55 V(_TypedList, _setFloat32, ByteArrayBaseSetFloat32, 1032541114) \ 55 V(_TypedList, _setFloat32, ByteArrayBaseSetFloat32, 1032541114) \
56 V(_TypedList, _setFloat64, ByteArrayBaseSetFloat64, 1032541114) \ 56 V(_TypedList, _setFloat64, ByteArrayBaseSetFloat64, 1032541114) \
57 V(_GrowableObjectArray, get:length, GrowableArrayLength, 725548050) \ 57 V(_GrowableObjectArray, get:length, GrowableArrayLength, 725548050) \
58 V(_GrowableObjectArray, get:_capacity, GrowableArrayCapacity, 725548050) \ 58 V(_GrowableObjectArray, get:_capacity, GrowableArrayCapacity, 725548050) \
59 V(_StringBase, get:length, StringBaseLength, 320803993) \ 59 V(_StringBase, get:length, StringBaseLength, 320803993) \
60 V(_StringBase, get:isEmpty, StringBaseIsEmpty, 110632481) \ 60 V(_StringBase, get:isEmpty, StringBaseIsEmpty, 110632481) \
61 V(_StringBase, codeUnitAt, StringBaseCodeUnitAt, 984449525) \ 61 V(_StringBase, codeUnitAt, StringBaseCodeUnitAt, 984449525) \
62 V(_StringBase, [], StringBaseCharAt, 1062366987) \ 62 V(_StringBase, [], StringBaseCharAt, 1062366987) \
63 V(_IntegerImplementation, toDouble, IntegerToDouble, 733149324) \ 63 V(_IntegerImplementation, toDouble, IntegerToDouble, 927078825) \
64 V(_Double, toInt, DoubleToInteger, 362666636) \ 64 V(_Double, toInt, DoubleToInteger, 362666636) \
65 V(_Double, truncateToDouble, DoubleTruncate, 620870996) \ 65 V(_Double, truncateToDouble, DoubleTruncate, 620870996) \
66 V(_Double, roundToDouble, DoubleRound, 620870996) \ 66 V(_Double, roundToDouble, DoubleRound, 620870996) \
67 V(_Double, floorToDouble, DoubleFloor, 620870996) \ 67 V(_Double, floorToDouble, DoubleFloor, 620870996) \
68 V(_Double, ceilToDouble, DoubleCeil, 620870996) \ 68 V(_Double, ceilToDouble, DoubleCeil, 620870996) \
69 V(_Double, pow, DoublePow, 1131958048) \ 69 V(_Double, pow, DoublePow, 1229411686) \
70 V(_Double, _modulo, DoubleMod, 437099337) \ 70 V(_Double, _modulo, DoubleMod, 437099337) \
71 V(::, sqrt, MathSqrt, 1662640002) \ 71 V(::, sqrt, MathSqrt, 1662640002) \
72 72
73 // Class that recognizes the name and owner of a function and returns the 73 // Class that recognizes the name and owner of a function and returns the
74 // corresponding enum. See RECOGNIZED_LIST above for list of recognizable 74 // corresponding enum. See RECOGNIZED_LIST above for list of recognizable
75 // functions. 75 // functions.
76 class MethodRecognizer : public AllStatic { 76 class MethodRecognizer : public AllStatic {
77 public: 77 public:
78 enum Kind { 78 enum Kind {
79 kUnknown, 79 kUnknown,
(...skipping 4595 matching lines...) Expand 10 before | Expand all | Expand 10 after
4675 ForwardInstructionIterator* current_iterator_; 4675 ForwardInstructionIterator* current_iterator_;
4676 4676
4677 private: 4677 private:
4678 DISALLOW_COPY_AND_ASSIGN(FlowGraphVisitor); 4678 DISALLOW_COPY_AND_ASSIGN(FlowGraphVisitor);
4679 }; 4679 };
4680 4680
4681 4681
4682 } // namespace dart 4682 } // namespace dart
4683 4683
4684 #endif // VM_INTERMEDIATE_LANGUAGE_H_ 4684 #endif // VM_INTERMEDIATE_LANGUAGE_H_
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698