Index: src/code-stubs.h |
diff --git a/src/code-stubs.h b/src/code-stubs.h |
index 7ec43c6ac507c66c2cc98698eaf85aef2bfe3f2f..8ab7cf8f0630819621da97dfb3a654d56840c9de 100644 |
--- a/src/code-stubs.h |
+++ b/src/code-stubs.h |
@@ -77,6 +77,7 @@ namespace internal { |
V(StringDictionaryLookup) \ |
V(ElementsTransitionAndStore) \ |
V(StoreArrayLiteralElement) \ |
+ V(StubFailureTrampoline) \ |
V(ProfileEntryHook) |
// List of code stubs only used on ARM platforms. |
@@ -1350,6 +1351,20 @@ class StoreArrayLiteralElementStub : public PlatformCodeStub { |
}; |
+class StubFailureTrampolineStub : public PlatformCodeStub { |
+ public: |
+ StubFailureTrampolineStub() {} |
+ |
+ private: |
+ Major MajorKey() { return StubFailureTrampoline; } |
+ int MinorKey() { return 0; } |
+ |
+ void Generate(MacroAssembler* masm); |
+ |
+ DISALLOW_COPY_AND_ASSIGN(StubFailureTrampolineStub); |
+}; |
+ |
+ |
class ProfileEntryHookStub : public PlatformCodeStub { |
public: |
explicit ProfileEntryHookStub() {} |