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

Unified Diff: src/code-stubs.h

Issue 2051113002: [stubs] ToNumberStub --> ToNumber builtin. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix full-code on non-x64 platforms Created 4 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/code-factory.cc ('k') | src/full-codegen/arm/full-codegen-arm.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/code-stubs.h
diff --git a/src/code-stubs.h b/src/code-stubs.h
index 5ed4f6c65ced636d44f36e932ffc9b87728fbd85..2f306cdc6837f84fa78fd29b03899241b2a48a32 100644
--- a/src/code-stubs.h
+++ b/src/code-stubs.h
@@ -45,8 +45,6 @@ namespace internal {
V(StoreElement) \
V(StubFailureTrampoline) \
V(SubString) \
- V(ToNumber) \
- V(NonNumberToNumber) \
V(ToString) \
V(ToName) \
V(ToObject) \
@@ -3215,24 +3213,6 @@ class SubStringStub : public PlatformCodeStub {
DEFINE_PLATFORM_CODE_STUB(SubString, PlatformCodeStub);
};
-
-class ToNumberStub final : public PlatformCodeStub {
- public:
- explicit ToNumberStub(Isolate* isolate) : PlatformCodeStub(isolate) {}
-
- DEFINE_CALL_INTERFACE_DESCRIPTOR(TypeConversion);
- DEFINE_PLATFORM_CODE_STUB(ToNumber, PlatformCodeStub);
-};
-
-class NonNumberToNumberStub final : public PlatformCodeStub {
- public:
- explicit NonNumberToNumberStub(Isolate* isolate)
- : PlatformCodeStub(isolate) {}
-
- DEFINE_CALL_INTERFACE_DESCRIPTOR(TypeConversion);
- DEFINE_PLATFORM_CODE_STUB(NonNumberToNumber, PlatformCodeStub);
-};
-
class ToStringStub final : public PlatformCodeStub {
public:
explicit ToStringStub(Isolate* isolate) : PlatformCodeStub(isolate) {}
@@ -3241,7 +3221,6 @@ class ToStringStub final : public PlatformCodeStub {
DEFINE_PLATFORM_CODE_STUB(ToString, PlatformCodeStub);
};
-
class ToNameStub final : public PlatformCodeStub {
public:
explicit ToNameStub(Isolate* isolate) : PlatformCodeStub(isolate) {}
« no previous file with comments | « src/code-factory.cc ('k') | src/full-codegen/arm/full-codegen-arm.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698