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

Side by Side Diff: src/compiler/types.h

Issue 2484003002: [builtins] implement JSBuiltinReducer for ArrayIteratorNext() (Closed)
Patch Set: and fix mjsunit.status.. Created 4 years, 1 month 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
OLDNEW
1 // Copyright 2014 the V8 project authors. All rights reserved. 1 // Copyright 2014 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef V8_COMPILER_TYPES_H_ 5 #ifndef V8_COMPILER_TYPES_H_
6 #define V8_COMPILER_TYPES_H_ 6 #define V8_COMPILER_TYPES_H_
7 7
8 #include "src/base/compiler-specific.h" 8 #include "src/base/compiler-specific.h"
9 #include "src/conversions.h" 9 #include "src/conversions.h"
10 #include "src/globals.h" 10 #include "src/globals.h"
(...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after
150 V(Undetectable, kNullOrUndefined | kOtherUndetectable) \ 150 V(Undetectable, kNullOrUndefined | kOtherUndetectable) \
151 V(NumberOrOddball, kNumber | kNullOrUndefined | kBoolean | kHole) \ 151 V(NumberOrOddball, kNumber | kNullOrUndefined | kBoolean | kHole) \
152 V(NumberOrSimdOrString, kNumber | kSimd | kString) \ 152 V(NumberOrSimdOrString, kNumber | kSimd | kString) \
153 V(NumberOrString, kNumber | kString) \ 153 V(NumberOrString, kNumber | kString) \
154 V(NumberOrUndefined, kNumber | kUndefined) \ 154 V(NumberOrUndefined, kNumber | kUndefined) \
155 V(PlainPrimitive, kNumberOrString | kBoolean | kNullOrUndefined) \ 155 V(PlainPrimitive, kNumberOrString | kBoolean | kNullOrUndefined) \
156 V(Primitive, kSymbol | kSimd | kPlainPrimitive) \ 156 V(Primitive, kSymbol | kSimd | kPlainPrimitive) \
157 V(DetectableReceiver, kFunction | kOtherObject | kProxy) \ 157 V(DetectableReceiver, kFunction | kOtherObject | kProxy) \
158 V(Object, kFunction | kOtherObject | kOtherUndetectable) \ 158 V(Object, kFunction | kOtherObject | kOtherUndetectable) \
159 V(Receiver, kObject | kProxy) \ 159 V(Receiver, kObject | kProxy) \
160 V(ReceiverOrUndefined, kReceiver | kUndefined) \
160 V(StringOrReceiver, kString | kReceiver) \ 161 V(StringOrReceiver, kString | kReceiver) \
161 V(Unique, kBoolean | kUniqueName | kNull | kUndefined | \ 162 V(Unique, kBoolean | kUniqueName | kNull | kUndefined | \
162 kReceiver) \ 163 kReceiver) \
163 V(Internal, kHole | kOtherInternal) \ 164 V(Internal, kHole | kOtherInternal) \
164 V(NonInternal, kPrimitive | kReceiver) \ 165 V(NonInternal, kPrimitive | kReceiver) \
165 V(NonNumber, kUnique | kString | kInternal) \ 166 V(NonNumber, kUnique | kString | kInternal) \
166 V(Any, 0xfffffffeu) 167 V(Any, 0xfffffffeu)
167 168
168 // clang-format on 169 // clang-format on
169 170
(...skipping 471 matching lines...) Expand 10 before | Expand all | Expand 10 after
641 RangeType::Limits* limits, Zone* zone); 642 RangeType::Limits* limits, Zone* zone);
642 static Type* NormalizeUnion(Type* unioned, int size, Zone* zone); 643 static Type* NormalizeUnion(Type* unioned, int size, Zone* zone);
643 static Type* NormalizeRangeAndBitset(Type* range, bitset* bits, Zone* zone); 644 static Type* NormalizeRangeAndBitset(Type* range, bitset* bits, Zone* zone);
644 }; 645 };
645 646
646 } // namespace compiler 647 } // namespace compiler
647 } // namespace internal 648 } // namespace internal
648 } // namespace v8 649 } // namespace v8
649 650
650 #endif // V8_COMPILER_TYPES_H_ 651 #endif // V8_COMPILER_TYPES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698