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

Unified Diff: src/code-stubs.h

Issue 2380973002: [stubs] replaced ToString MacroAssembler Stub with CodeStubAssembler builtin (Closed)
Patch Set: completely removed ToStringStub 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/code-stubs.h
diff --git a/src/code-stubs.h b/src/code-stubs.h
index 8d8a53b6604913605593d634729cec96d12c8a93..305c5f3e33f7449726074a13e3fa97ab96a22b08 100644
--- a/src/code-stubs.h
+++ b/src/code-stubs.h
@@ -43,7 +43,6 @@ class ObjectLiteral;
V(StoreBufferOverflow) \
V(StoreElement) \
V(SubString) \
- V(ToString) \
V(StoreIC) \
V(KeyedStoreIC) \
V(KeyedLoadIC) \
@@ -3160,14 +3159,6 @@ class SubStringStub : public PlatformCodeStub {
DEFINE_PLATFORM_CODE_STUB(SubString, PlatformCodeStub);
};
-class ToStringStub final : public PlatformCodeStub {
- public:
- explicit ToStringStub(Isolate* isolate) : PlatformCodeStub(isolate) {}
-
- DEFINE_CALL_INTERFACE_DESCRIPTOR(TypeConversion);
- DEFINE_PLATFORM_CODE_STUB(ToString, PlatformCodeStub);
-};
-
class ToObjectStub final : public TurboFanCodeStub {
public:
explicit ToObjectStub(Isolate* isolate) : TurboFanCodeStub(isolate) {}

Powered by Google App Engine
This is Rietveld 408576698