| Index: src/code-stubs.h
|
| diff --git a/src/code-stubs.h b/src/code-stubs.h
|
| index 5542b428718914f0a80cab7d4b794fe4cd857aab..8d65ec195ea256f9ee69c5760bfa02059421bb98 100644
|
| --- a/src/code-stubs.h
|
| +++ b/src/code-stubs.h
|
| @@ -56,7 +56,6 @@ namespace internal {
|
| /* HydrogenCodeStubs */ \
|
| V(BinaryOpIC) \
|
| V(BinaryOpWithAllocationSite) \
|
| - V(CreateAllocationSite) \
|
| V(CreateWeakCell) \
|
| V(ElementsTransitionAndStore) \
|
| V(FastArrayPush) \
|
| @@ -99,6 +98,7 @@ namespace internal {
|
| V(ArrayNoArgumentConstructor) \
|
| V(ArraySingleArgumentConstructor) \
|
| V(ArrayNArgumentsConstructor) \
|
| + V(CreateAllocationSite) \
|
| V(StringLength) \
|
| V(Add) \
|
| V(Subtract) \
|
| @@ -1204,16 +1204,14 @@ class FastCloneShallowObjectStub : public TurboFanCodeStub {
|
| DEFINE_TURBOFAN_CODE_STUB(FastCloneShallowObject, TurboFanCodeStub);
|
| };
|
|
|
| -
|
| -class CreateAllocationSiteStub : public HydrogenCodeStub {
|
| +class CreateAllocationSiteStub : public TurboFanCodeStub {
|
| public:
|
| explicit CreateAllocationSiteStub(Isolate* isolate)
|
| - : HydrogenCodeStub(isolate) { }
|
| -
|
| + : TurboFanCodeStub(isolate) {}
|
| static void GenerateAheadOfTime(Isolate* isolate);
|
|
|
| DEFINE_CALL_INTERFACE_DESCRIPTOR(CreateAllocationSite);
|
| - DEFINE_HYDROGEN_CODE_STUB(CreateAllocationSite, HydrogenCodeStub);
|
| + DEFINE_TURBOFAN_CODE_STUB(CreateAllocationSite, TurboFanCodeStub);
|
| };
|
|
|
|
|
|
|