diff options
Diffstat (limited to 'deps/v8/src/mips/frames-mips.h')
-rw-r--r-- | deps/v8/src/mips/frames-mips.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/deps/v8/src/mips/frames-mips.h b/deps/v8/src/mips/frames-mips.h index 2c838938b7..a2ebce6829 100644 --- a/deps/v8/src/mips/frames-mips.h +++ b/deps/v8/src/mips/frames-mips.h @@ -85,6 +85,20 @@ static const RegList kCalleeSavedFPU = 1 << 30; // f30 static const int kNumCalleeSavedFPU = 6; + +static const RegList kCallerSavedFPU = + 1 << 0 | // f0 + 1 << 2 | // f2 + 1 << 4 | // f4 + 1 << 6 | // f6 + 1 << 8 | // f8 + 1 << 10 | // f10 + 1 << 12 | // f12 + 1 << 14 | // f14 + 1 << 16 | // f16 + 1 << 18; // f18 + + // Number of registers for which space is reserved in safepoints. Must be a // multiple of 8. static const int kNumSafepointRegisters = 24; |