Index: src/mips/frames-mips.h |
diff --git a/src/mips/frames-mips.h b/src/mips/frames-mips.h |
index 2ed358a91312e694e080d8e1e25196dd22af3588..188e7d15cf3d90ecef1165216501306a90870838 100644 |
--- a/src/mips/frames-mips.h |
+++ b/src/mips/frames-mips.h |
@@ -193,30 +193,6 @@ class ExitFrameConstants : public AllStatic { |
}; |
-class StandardFrameConstants : public AllStatic { |
- public: |
- // Fixed part of the frame consists of return address, caller fp, |
- // context and function. |
- static const int kFixedFrameSize = 4 * kPointerSize; |
- static const int kExpressionsOffset = -3 * kPointerSize; |
- static const int kMarkerOffset = -2 * kPointerSize; |
- static const int kContextOffset = -1 * kPointerSize; |
- static const int kCallerFPOffset = 0 * kPointerSize; |
- static const int kCallerPCOffset = +1 * kPointerSize; |
- static const int kCallerSPOffset = +2 * kPointerSize; |
- |
- // Size of the MIPS 4 32-bit argument slots. |
- // This is just an alias with a shorter name. Use it from now on. |
- static const int kRArgsSlotsSize = 4 * kPointerSize; |
- static const int kRegularArgsSlotsSize = kRArgsSlotsSize; |
- |
- // JS argument slots size. |
- static const int kJSArgsSlotsSize = 0 * kPointerSize; |
- // Assembly builtins argument slots size. |
- static const int kBArgsSlotsSize = 0 * kPointerSize; |
-}; |
- |
- |
class JavaScriptFrameConstants : public AllStatic { |
public: |
// FP-relative. |