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

Unified Diff: src/code-stub-assembler.h

Issue 2532403002: [regexp] Migrate @@split to TurboFan (Closed)
Patch Set: Address comments Created 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/builtins/builtins-regexp.cc ('k') | src/code-stub-assembler.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/code-stub-assembler.h
diff --git a/src/code-stub-assembler.h b/src/code-stub-assembler.h
index 29afdfe4a0dd3a04ab6614d62238520950cfc4af..f6d6b2433330282f322410739fbb5b9892327fd5 100644
--- a/src/code-stub-assembler.h
+++ b/src/code-stub-assembler.h
@@ -595,6 +595,11 @@ class V8_EXPORT_PRIVATE CodeStubAssembler : public compiler::CodeAssembler {
// Convert any object to a Number.
Node* ToNumber(Node* context, Node* input);
+ // Converts |input| to one of 2^32 integer values in the range 0 through
+ // 2^32−1, inclusive.
+ // ES#sec-touint32
+ compiler::Node* ToUint32(compiler::Node* context, compiler::Node* input);
+
// Convert any object to a String.
Node* ToString(Node* context, Node* input);
« no previous file with comments | « src/builtins/builtins-regexp.cc ('k') | src/code-stub-assembler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698