Merge isolates to bleeding_edge.
[platform/upstream/v8.git] / src / ia32 / frames-ia32.h
1 // Copyright 2006-2008 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are
4 // met:
5 //
6 //     * Redistributions of source code must retain the above copyright
7 //       notice, this list of conditions and the following disclaimer.
8 //     * Redistributions in binary form must reproduce the above
9 //       copyright notice, this list of conditions and the following
10 //       disclaimer in the documentation and/or other materials provided
11 //       with the distribution.
12 //     * Neither the name of Google Inc. nor the names of its
13 //       contributors may be used to endorse or promote products derived
14 //       from this software without specific prior written permission.
15 //
16 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19 // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20 // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
28 #ifndef V8_IA32_FRAMES_IA32_H_
29 #define V8_IA32_FRAMES_IA32_H_
30
31 #include "memory.h"
32
33 namespace v8 {
34 namespace internal {
35
36
37 // Register lists
38 // Note that the bit values must match those used in actual instruction encoding
39 static const int kNumRegs = 8;
40
41
42 // Caller-saved registers
43 static const RegList kJSCallerSaved =
44   1 << 0 |  // eax
45   1 << 1 |  // ecx
46   1 << 2 |  // edx
47   1 << 3 |  // ebx - used as a caller-saved register in JavaScript code
48   1 << 7;   // edi - callee function
49
50 static const int kNumJSCallerSaved = 5;
51
52 typedef Object* JSCallerSavedBuffer[kNumJSCallerSaved];
53
54
55 // Number of registers for which space is reserved in safepoints.
56 static const int kNumSafepointRegisters = 8;
57
58 // ----------------------------------------------------
59
60
61 class StackHandlerConstants : public AllStatic {
62  public:
63   static const int kNextOffset  = 0 * kPointerSize;
64   static const int kFPOffset    = 1 * kPointerSize;
65   static const int kStateOffset = 2 * kPointerSize;
66   static const int kPCOffset    = 3 * kPointerSize;
67
68   static const int kSize = kPCOffset + kPointerSize;
69 };
70
71
72 class EntryFrameConstants : public AllStatic {
73  public:
74   static const int kCallerFPOffset      = -6 * kPointerSize;
75
76   static const int kFunctionArgOffset   = +3 * kPointerSize;
77   static const int kReceiverArgOffset   = +4 * kPointerSize;
78   static const int kArgcOffset          = +5 * kPointerSize;
79   static const int kArgvOffset          = +6 * kPointerSize;
80 };
81
82
83 class ExitFrameConstants : public AllStatic {
84  public:
85   static const int kCodeOffset      = -2 * kPointerSize;
86   static const int kSPOffset        = -1 * kPointerSize;
87
88   static const int kCallerFPOffset =  0 * kPointerSize;
89   static const int kCallerPCOffset = +1 * kPointerSize;
90
91   // FP-relative displacement of the caller's SP.  It points just
92   // below the saved PC.
93   static const int kCallerSPDisplacement = +2 * kPointerSize;
94 };
95
96
97 class StandardFrameConstants : public AllStatic {
98  public:
99   static const int kFixedFrameSize    =  4;
100   static const int kExpressionsOffset = -3 * kPointerSize;
101   static const int kMarkerOffset      = -2 * kPointerSize;
102   static const int kContextOffset     = -1 * kPointerSize;
103   static const int kCallerFPOffset    =  0 * kPointerSize;
104   static const int kCallerPCOffset    = +1 * kPointerSize;
105   static const int kCallerSPOffset    = +2 * kPointerSize;
106 };
107
108
109 class JavaScriptFrameConstants : public AllStatic {
110  public:
111   // FP-relative.
112   static const int kLocal0Offset = StandardFrameConstants::kExpressionsOffset;
113   static const int kSavedRegistersOffset = +2 * kPointerSize;
114   static const int kFunctionOffset = StandardFrameConstants::kMarkerOffset;
115
116   // Caller SP-relative.
117   static const int kParam0Offset   = -2 * kPointerSize;
118   static const int kReceiverOffset = -1 * kPointerSize;
119 };
120
121
122 class ArgumentsAdaptorFrameConstants : public AllStatic {
123  public:
124   static const int kLengthOffset = StandardFrameConstants::kExpressionsOffset;
125 };
126
127
128 class InternalFrameConstants : public AllStatic {
129  public:
130   static const int kCodeOffset = StandardFrameConstants::kExpressionsOffset;
131 };
132
133
134 inline Object* JavaScriptFrame::function_slot_object() const {
135   const int offset = JavaScriptFrameConstants::kFunctionOffset;
136   return Memory::Object_at(fp() + offset);
137 }
138
139
140 } }  // namespace v8::internal
141
142 #endif  // V8_IA32_FRAMES_IA32_H_