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

Unified Diff: src/types.h

Issue 16925008: Generate StoreGlobal stubs with Hydrogen (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Fix test cases Created 7 years, 6 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 | « src/stub-cache.cc ('k') | src/types.cc » ('j') | src/types.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/types.h
diff --git a/src/types.h b/src/types.h
index acd199d9c45062ab3d24c79f269fcfbef6141a4a..a6c065110555e23392ec40938f8a56956165034e 100644
--- a/src/types.h
+++ b/src/types.h
@@ -120,6 +120,7 @@ class Type : public Object {
static Type* Array() { return from_bitset(kArray); }
static Type* Function() { return from_bitset(kFunction); }
static Type* Proxy() { return from_bitset(kProxy); }
+ static Type* Internal() { return from_bitset(kInternal); }
static Type* Class(Handle<Map> map) { return from_handle(map); }
static Type* Constant(Handle<HeapObject> value) {
@@ -199,6 +200,7 @@ class Type : public Object {
kFunction = 1 << 11,
kOtherObject = 1 << 12,
kProxy = 1 << 13,
+ kInternal = 1 << 14,
kOddball = kBoolean | kNull | kUndefined,
kInteger32 = kInteger31 | kOtherInteger,
@@ -209,7 +211,7 @@ class Type : public Object {
kObject = kUndetectable | kArray | kFunction | kOtherObject,
kReceiver = kObject | kProxy,
kAllocated = kDouble | kName | kReceiver,
- kAny = kOddball | kNumber | kAllocated,
+ kAny = kOddball | kNumber | kAllocated | kInternal,
rossberg 2013/06/25 10:47:38 I can't yet make up my mind whether Internal shoul
kDetectable = kAllocated - kUndetectable,
kNone = 0
};
« no previous file with comments | « src/stub-cache.cc ('k') | src/types.cc » ('j') | src/types.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698