~ubuntu-branches/ubuntu/saucy/libv8/saucy

« back to all changes in this revision

Viewing changes to src/mips/frames-mips.h

  • Committer: Package Import Robot
  • Author(s): Jérémy Lal
  • Date: 2012-04-07 16:26:13 UTC
  • mfrom: (15.1.27 sid)
  • Revision ID: package-import@ubuntu.com-20120407162613-dqo1m6w9r3fh8tst
Tags: 3.8.9.16-3
* mipsel build fixes :
  + v8_use_mips_abi_hardfloat=false, this lowers EABI requirements.
  + v8_can_use_fpu_instructions=false, detect if FPU is present.
  + set -Wno-unused-but-set-variable only on mipsel.

Show diffs side-by-side

added added

removed removed

Lines of Context:
195
195
 
196
196
class StandardFrameConstants : public AllStatic {
197
197
 public:
 
198
  // Fixed part of the frame consists of return address, caller fp,
 
199
  // context and function.
 
200
  static const int kFixedFrameSize    =  4 * kPointerSize;
198
201
  static const int kExpressionsOffset = -3 * kPointerSize;
199
202
  static const int kMarkerOffset      = -2 * kPointerSize;
200
203
  static const int kContextOffset     = -1 * kPointerSize;
230
233
class ArgumentsAdaptorFrameConstants : public AllStatic {
231
234
 public:
232
235
  static const int kLengthOffset = StandardFrameConstants::kExpressionsOffset;
 
236
  static const int kFrameSize =
 
237
      StandardFrameConstants::kFixedFrameSize + kPointerSize;
233
238
};
234
239
 
235
240