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

Unified Diff: src/hydrogen-types.h

Issue 847373002: Add proper support for proxies to HType. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 11 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | src/hydrogen-types.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/hydrogen-types.h
diff --git a/src/hydrogen-types.h b/src/hydrogen-types.h
index 70870dd90a6ecf69670e3eb660bd3ae435ece0c5..773a18ca7e12a416d7b28fb3f40f73bbd865d558 100644
--- a/src/hydrogen-types.h
+++ b/src/hydrogen-types.h
@@ -17,22 +17,23 @@ namespace internal {
template <typename T> class Handle;
class Object;
-#define HTYPE_LIST(V) \
- V(Any, 0x0) /* 0000 0000 0000 0000 */ \
- V(Tagged, 0x1) /* 0000 0000 0000 0001 */ \
- V(TaggedPrimitive, 0x5) /* 0000 0000 0000 0101 */ \
- V(TaggedNumber, 0xd) /* 0000 0000 0000 1101 */ \
- V(Smi, 0x1d) /* 0000 0000 0001 1101 */ \
- V(HeapObject, 0x21) /* 0000 0000 0010 0001 */ \
- V(HeapPrimitive, 0x25) /* 0000 0000 0010 0101 */ \
- V(Null, 0x27) /* 0000 0000 0010 0111 */ \
- V(HeapNumber, 0x2d) /* 0000 0000 0010 1101 */ \
- V(String, 0x65) /* 0000 0000 0110 0101 */ \
- V(Boolean, 0xa5) /* 0000 0000 1010 0101 */ \
- V(Undefined, 0x125) /* 0000 0001 0010 0101 */ \
- V(JSObject, 0x221) /* 0000 0010 0010 0001 */ \
- V(JSArray, 0x621) /* 0000 0110 0010 0001 */ \
- V(None, 0x7ff) /* 0000 0111 1111 1111 */
+#define HTYPE_LIST(V) \
+ V(Any, 0x0) /* 0000 0000 0000 0000 */ \
+ V(Tagged, 0x1) /* 0000 0000 0000 0001 */ \
+ V(TaggedPrimitive, 0x5) /* 0000 0000 0000 0101 */ \
+ V(TaggedNumber, 0xd) /* 0000 0000 0000 1101 */ \
+ V(Smi, 0x1d) /* 0000 0000 0001 1101 */ \
+ V(HeapObject, 0x21) /* 0000 0000 0010 0001 */ \
+ V(HeapPrimitive, 0x25) /* 0000 0000 0010 0101 */ \
+ V(Null, 0x27) /* 0000 0000 0010 0111 */ \
+ V(HeapNumber, 0x2d) /* 0000 0000 0010 1101 */ \
+ V(String, 0x65) /* 0000 0000 0110 0101 */ \
+ V(Boolean, 0xa5) /* 0000 0000 1010 0101 */ \
+ V(Undefined, 0x125) /* 0000 0001 0010 0101 */ \
+ V(JSReceiver, 0x221) /* 0000 0010 0010 0001 */ \
+ V(JSObject, 0x621) /* 0000 0110 0010 0001 */ \
+ V(JSArray, 0xe21) /* 0000 1110 0010 0001 */ \
+ V(None, 0xfff) /* 0000 1111 1111 1111 */
class HType FINAL {
public:
« no previous file with comments | « no previous file | src/hydrogen-types.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698