Index: src/mips/code-stubs-mips.h |
diff --git a/src/mips/code-stubs-mips.h b/src/mips/code-stubs-mips.h |
index 3a84644a18c332ee1049d1c6976de5086a675d73..ec7d147988f4a2f9c1189723b19db796574ff3f4 100644 |
--- a/src/mips/code-stubs-mips.h |
+++ b/src/mips/code-stubs-mips.h |
@@ -212,11 +212,13 @@ class StringHelper : public AllStatic { |
// Flag that indicates how to generate code for the stub StringAddStub. |
enum StringAddFlags { |
- NO_STRING_ADD_FLAGS = 0, |
+ NO_STRING_ADD_FLAGS = 1 << 0, |
// Omit left string check in stub (left is definitely a string). |
- NO_STRING_CHECK_LEFT_IN_STUB = 1 << 0, |
+ NO_STRING_CHECK_LEFT_IN_STUB = 1 << 1, |
// Omit right string check in stub (right is definitely a string). |
- NO_STRING_CHECK_RIGHT_IN_STUB = 1 << 1, |
+ NO_STRING_CHECK_RIGHT_IN_STUB = 1 << 2, |
+ // Stub needs a frame before calling the runtime |
+ ERECT_FRAME = 1 << 3, |
// Omit both string checks in stub. |
NO_STRING_CHECK_IN_STUB = |
NO_STRING_CHECK_LEFT_IN_STUB | NO_STRING_CHECK_RIGHT_IN_STUB |
@@ -242,6 +244,9 @@ class StringAddStub: public PlatformCodeStub { |
Register scratch4, |
Label* slow); |
+ void GenerateRegisterArgsPush(MacroAssembler* masm); |
+ void GenerateRegisterArgsPop(MacroAssembler* masm); |
+ |
const StringAddFlags flags_; |
}; |