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

Unified Diff: src/globals.h

Issue 2373983004: [turbofan] inline %StringIteratorPrototype%.next in JSBuiltinReducer. (Closed)
Patch Set: Created 4 years, 3 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
Index: src/globals.h
diff --git a/src/globals.h b/src/globals.h
index eb899469fe544977e4e1392ad5e9aa9d811bbbc6..7ef581962cfea836034d82bec132b74775ece7a2 100644
--- a/src/globals.h
+++ b/src/globals.h
@@ -1233,6 +1233,12 @@ enum LiveEditFrameDropMode {
LIVE_EDIT_CURRENTLY_SET_MODE
};
+enum class UnicodeEncoding {
+ // Different unicode encodings in a |word32|:
+ UTF16, // hi 16bits -> trailing surrogate or 0, low 16bits -> lead surrogate
+ UTF32, // full UTF32 code unit / Unicode codepoint
+};
+
} // namespace internal
} // namespace v8

Powered by Google App Engine
This is Rietveld 408576698