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

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

Issue 11628011: Inline ByteArrayBase.length in the flow graph optimizer. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years 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) 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_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 11 matching lines...) Expand all
22 class Definition; 22 class Definition;
23 class Environment; 23 class Environment;
24 class FlowGraphCompiler; 24 class FlowGraphCompiler;
25 class FlowGraphVisitor; 25 class FlowGraphVisitor;
26 class Instruction; 26 class Instruction;
27 class LocalVariable; 27 class LocalVariable;
28 class Range; 28 class Range;
29 class FlowGraphOptimizer; 29 class FlowGraphOptimizer;
30 30
31 31
32 // TODO(srdjan): Add _ByteArrayBase, get:length.
33 // TODO(srdjan): Unify with INTRINSIC_LIST. 32 // TODO(srdjan): Unify with INTRINSIC_LIST.
34 // (class-name, function-name, recognized enum, fingerprint). 33 // (class-name, function-name, recognized enum, fingerprint).
35 // See intrinsifier for fingerprint computation. 34 // See intrinsifier for fingerprint computation.
36 #define RECOGNIZED_LIST(V) \ 35 #define RECOGNIZED_LIST(V) \
37 V(_ObjectArray, get:length, ObjectArrayLength, 405297088) \ 36 V(_ObjectArray, get:length, ObjectArrayLength, 405297088) \
38 V(_ImmutableArray, get:length, ImmutableArrayLength, 433698233) \ 37 V(_ImmutableArray, get:length, ImmutableArrayLength, 433698233) \
38 V(_ByteArrayBase, get:length, ByteArrayBaseLength, 1828280001) \
39 V(_GrowableObjectArray, get:length, GrowableArrayLength, 725548050) \ 39 V(_GrowableObjectArray, get:length, GrowableArrayLength, 725548050) \
40 V(_GrowableObjectArray, get:capacity, GrowableArrayCapacity, 725548050) \ 40 V(_GrowableObjectArray, get:capacity, GrowableArrayCapacity, 725548050) \
41 V(_StringBase, get:length, StringBaseLength, 320803993) \ 41 V(_StringBase, get:length, StringBaseLength, 320803993) \
42 V(_StringBase, get:isEmpty, StringBaseIsEmpty, 583130725) \ 42 V(_StringBase, get:isEmpty, StringBaseIsEmpty, 583130725) \
43 V(_StringBase, charCodeAt, StringBaseCharCodeAt, 984449525) \ 43 V(_StringBase, charCodeAt, StringBaseCharCodeAt, 984449525) \
44 V(_StringBase, [], StringBaseCharAt, 1062366987) \ 44 V(_StringBase, [], StringBaseCharAt, 1062366987) \
45 V(_IntegerImplementation, toDouble, IntegerToDouble, 1252792570) \ 45 V(_IntegerImplementation, toDouble, IntegerToDouble, 1252792570) \
46 V(_Double, toInt, DoubleToInteger, 362666636) \ 46 V(_Double, toInt, DoubleToInteger, 362666636) \
47 V(::, sqrt, MathSqrt, 2232519) \ 47 V(::, sqrt, MathSqrt, 2232519) \
48 48
(...skipping 4270 matching lines...) Expand 10 before | Expand all | Expand 10 after
4319 ForwardInstructionIterator* current_iterator_; 4319 ForwardInstructionIterator* current_iterator_;
4320 4320
4321 private: 4321 private:
4322 DISALLOW_COPY_AND_ASSIGN(FlowGraphVisitor); 4322 DISALLOW_COPY_AND_ASSIGN(FlowGraphVisitor);
4323 }; 4323 };
4324 4324
4325 4325
4326 } // namespace dart 4326 } // namespace dart
4327 4327
4328 #endif // VM_INTERMEDIATE_LANGUAGE_H_ 4328 #endif // VM_INTERMEDIATE_LANGUAGE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698