OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
4 // met: | 4 // met: |
5 // | 5 // |
6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
53 // Number of registers for which space is reserved in safepoints. | 53 // Number of registers for which space is reserved in safepoints. |
54 const int kNumSafepointRegisters = 8; | 54 const int kNumSafepointRegisters = 8; |
55 | 55 |
56 const int kNoAlignmentPadding = 0; | 56 const int kNoAlignmentPadding = 0; |
57 const int kAlignmentPaddingPushed = 2; | 57 const int kAlignmentPaddingPushed = 2; |
58 const int kAlignmentZapValue = 0x12345678; // Not heap object tagged. | 58 const int kAlignmentZapValue = 0x12345678; // Not heap object tagged. |
59 | 59 |
60 // ---------------------------------------------------- | 60 // ---------------------------------------------------- |
61 | 61 |
62 | 62 |
63 class StackHandlerConstants : public AllStatic { | |
64 public: | |
65 static const int kNextOffset = 0 * kPointerSize; | |
66 static const int kCodeOffset = 1 * kPointerSize; | |
67 static const int kStateOffset = 2 * kPointerSize; | |
68 static const int kContextOffset = 3 * kPointerSize; | |
69 static const int kFPOffset = 4 * kPointerSize; | |
70 | |
71 static const int kSize = kFPOffset + kPointerSize; | |
72 }; | |
73 | |
74 | |
75 class EntryFrameConstants : public AllStatic { | 63 class EntryFrameConstants : public AllStatic { |
76 public: | 64 public: |
77 static const int kCallerFPOffset = -6 * kPointerSize; | 65 static const int kCallerFPOffset = -6 * kPointerSize; |
78 | 66 |
79 static const int kFunctionArgOffset = +3 * kPointerSize; | 67 static const int kFunctionArgOffset = +3 * kPointerSize; |
80 static const int kReceiverArgOffset = +4 * kPointerSize; | 68 static const int kReceiverArgOffset = +4 * kPointerSize; |
81 static const int kArgcOffset = +5 * kPointerSize; | 69 static const int kArgcOffset = +5 * kPointerSize; |
82 static const int kArgvOffset = +6 * kPointerSize; | 70 static const int kArgvOffset = +6 * kPointerSize; |
83 }; | 71 }; |
84 | 72 |
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
144 | 132 |
145 inline Object* JavaScriptFrame::function_slot_object() const { | 133 inline Object* JavaScriptFrame::function_slot_object() const { |
146 const int offset = JavaScriptFrameConstants::kFunctionOffset; | 134 const int offset = JavaScriptFrameConstants::kFunctionOffset; |
147 return Memory::Object_at(fp() + offset); | 135 return Memory::Object_at(fp() + offset); |
148 } | 136 } |
149 | 137 |
150 | 138 |
151 } } // namespace v8::internal | 139 } } // namespace v8::internal |
152 | 140 |
153 #endif // V8_IA32_FRAMES_IA32_H_ | 141 #endif // V8_IA32_FRAMES_IA32_H_ |
OLD | NEW |