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

Unified Diff: src/builtins/builtins-symbol-gen.cc

Issue 2752143004: [refactor] Separate generated builtins and C++ builtins into separate files (Closed)
Patch Set: tentative gcmole fix Created 3 years, 9 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/builtins/builtins-symbol.cc ('k') | src/builtins/builtins-typedarray.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/builtins/builtins-symbol-gen.cc
diff --git a/src/builtins/builtins-symbol-gen.cc b/src/builtins/builtins-symbol-gen.cc
new file mode 100644
index 0000000000000000000000000000000000000000..8320333a081774caa19e46614d7e9a12f867c85b
--- /dev/null
+++ b/src/builtins/builtins-symbol-gen.cc
@@ -0,0 +1,47 @@
+// Copyright 2017 the V8 project authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "src/builtins/builtins-utils-gen.h"
+#include "src/builtins/builtins.h"
+#include "src/code-stub-assembler.h"
+
+namespace v8 {
+namespace internal {
+
+// -----------------------------------------------------------------------------
+// ES6 section 19.4 Symbol Objects
+
+// ES6 section 19.4.3.4 Symbol.prototype [ @@toPrimitive ] ( hint )
+TF_BUILTIN(SymbolPrototypeToPrimitive, CodeStubAssembler) {
+ Node* receiver = Parameter(0);
+ Node* context = Parameter(4);
+
+ Node* result = ToThisValue(context, receiver, PrimitiveType::kSymbol,
+ "Symbol.prototype [ @@toPrimitive ]");
+ Return(result);
+}
+
+// ES6 section 19.4.3.2 Symbol.prototype.toString ( )
+TF_BUILTIN(SymbolPrototypeToString, CodeStubAssembler) {
+ Node* receiver = Parameter(0);
+ Node* context = Parameter(3);
+
+ Node* value = ToThisValue(context, receiver, PrimitiveType::kSymbol,
+ "Symbol.prototype.toString");
+ Node* result = CallRuntime(Runtime::kSymbolDescriptiveString, context, value);
+ Return(result);
+}
+
+// ES6 section 19.4.3.3 Symbol.prototype.valueOf ( )
+TF_BUILTIN(SymbolPrototypeValueOf, CodeStubAssembler) {
+ Node* receiver = Parameter(0);
+ Node* context = Parameter(3);
+
+ Node* result = ToThisValue(context, receiver, PrimitiveType::kSymbol,
+ "Symbol.prototype.valueOf");
+ Return(result);
+}
+
+} // namespace internal
+} // namespace v8
« no previous file with comments | « src/builtins/builtins-symbol.cc ('k') | src/builtins/builtins-typedarray.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698