Index: src/mips/frames-mips.h |
diff --git a/src/mips/frames-mips.h b/src/mips/frames-mips.h |
index 1899843a198d22484365dc2357bde396c918d5d4..0efde2d5f59c0ddb6f8385e06e2fc115a5b61606 100644 |
--- a/src/mips/frames-mips.h |
+++ b/src/mips/frames-mips.h |
@@ -30,7 +30,6 @@ |
#ifndef V8_MIPS_FRAMES_MIPS_H_ |
#define V8_MIPS_FRAMES_MIPS_H_ |
- |
namespace v8 { |
namespace internal { |
@@ -64,6 +63,10 @@ static const RegList kCalleeSaved = |
static const int kNumCalleeSaved = 9; |
+static const RegList kCalleeSavedFPU = |
+ 1 << 20 | 1 << 22 | 1 << 24 | 1 << 26 | 1 << 28 | 1 << 30; |
Yang
2011/08/31 12:38:44
Comments similar to those in frames-arm.h would be
Paul Lind
2011/09/01 06:50:27
Done. Refactored the other RegLists too.
|
+ |
+static const int kNumCalleeSavedFPU = 6; |
// Number of registers for which space is reserved in safepoints. Must be a |
// multiple of 8. |