OLD | NEW |
1 // Copyright 2011 the V8 project authors. All rights reserved. | 1 // Copyright 2011 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 11 matching lines...) Expand all Loading... |
22 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | 22 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
23 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | 23 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 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. | 26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
27 | 27 |
28 #ifndef V8_X64_MACRO_ASSEMBLER_X64_H_ | 28 #ifndef V8_X64_MACRO_ASSEMBLER_X64_H_ |
29 #define V8_X64_MACRO_ASSEMBLER_X64_H_ | 29 #define V8_X64_MACRO_ASSEMBLER_X64_H_ |
30 | 30 |
31 #include "assembler.h" | 31 #include "assembler.h" |
| 32 #include "frames.h" |
32 #include "v8globals.h" | 33 #include "v8globals.h" |
33 | 34 |
34 namespace v8 { | 35 namespace v8 { |
35 namespace internal { | 36 namespace internal { |
36 | 37 |
37 // Flags used for the AllocateInNewSpace functions. | 38 // Flags used for the AllocateInNewSpace functions. |
38 enum AllocationFlags { | 39 enum AllocationFlags { |
39 // No special flags. | 40 // No special flags. |
40 NO_ALLOCATION_FLAGS = 0, | 41 NO_ALLOCATION_FLAGS = 0, |
41 // Return the pointer to the allocated already tagged as a heap object. | 42 // Return the pointer to the allocated already tagged as a heap object. |
(...skipping 23 matching lines...) Expand all Loading... |
65 class JumpTarget; | 66 class JumpTarget; |
66 | 67 |
67 struct SmiIndex { | 68 struct SmiIndex { |
68 SmiIndex(Register index_register, ScaleFactor scale) | 69 SmiIndex(Register index_register, ScaleFactor scale) |
69 : reg(index_register), | 70 : reg(index_register), |
70 scale(scale) {} | 71 scale(scale) {} |
71 Register reg; | 72 Register reg; |
72 ScaleFactor scale; | 73 ScaleFactor scale; |
73 }; | 74 }; |
74 | 75 |
| 76 |
75 // MacroAssembler implements a collection of frequently used macros. | 77 // MacroAssembler implements a collection of frequently used macros. |
76 class MacroAssembler: public Assembler { | 78 class MacroAssembler: public Assembler { |
77 public: | 79 public: |
78 // The isolate parameter can be NULL if the macro assembler should | 80 // The isolate parameter can be NULL if the macro assembler should |
79 // not use isolate-dependent functionality. In this case, it's the | 81 // not use isolate-dependent functionality. In this case, it's the |
80 // responsibility of the caller to never invoke such function on the | 82 // responsibility of the caller to never invoke such function on the |
81 // macro assembler. | 83 // macro assembler. |
82 MacroAssembler(Isolate* isolate, void* buffer, int size); | 84 MacroAssembler(Isolate* isolate, void* buffer, int size); |
83 | 85 |
84 // Prevent the use of the RootArray during the lifetime of this | 86 // Prevent the use of the RootArray during the lifetime of this |
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
185 Register value, | 187 Register value, |
186 Register scratch); | 188 Register scratch); |
187 | 189 |
188 #ifdef ENABLE_DEBUGGER_SUPPORT | 190 #ifdef ENABLE_DEBUGGER_SUPPORT |
189 // --------------------------------------------------------------------------- | 191 // --------------------------------------------------------------------------- |
190 // Debugger Support | 192 // Debugger Support |
191 | 193 |
192 void DebugBreak(); | 194 void DebugBreak(); |
193 #endif | 195 #endif |
194 | 196 |
195 // --------------------------------------------------------------------------- | |
196 // Activation frames | |
197 | |
198 void EnterInternalFrame() { EnterFrame(StackFrame::INTERNAL); } | |
199 void LeaveInternalFrame() { LeaveFrame(StackFrame::INTERNAL); } | |
200 | |
201 void EnterConstructFrame() { EnterFrame(StackFrame::CONSTRUCT); } | |
202 void LeaveConstructFrame() { LeaveFrame(StackFrame::CONSTRUCT); } | |
203 | |
204 // Enter specific kind of exit frame; either in normal or | 197 // Enter specific kind of exit frame; either in normal or |
205 // debug mode. Expects the number of arguments in register rax and | 198 // debug mode. Expects the number of arguments in register rax and |
206 // sets up the number of arguments in register rdi and the pointer | 199 // sets up the number of arguments in register rdi and the pointer |
207 // to the first argument in register rsi. | 200 // to the first argument in register rsi. |
208 // | 201 // |
209 // Allocates arg_stack_space * kPointerSize memory (not GCed) on the stack | 202 // Allocates arg_stack_space * kPointerSize memory (not GCed) on the stack |
210 // accessible via StackSpaceOperand. | 203 // accessible via StackSpaceOperand. |
211 void EnterExitFrame(int arg_stack_space = 0, bool save_doubles = false); | 204 void EnterExitFrame(int arg_stack_space = 0, bool save_doubles = false); |
212 | 205 |
213 // Enter specific kind of exit frame. Allocates arg_stack_space * kPointerSize | 206 // Enter specific kind of exit frame. Allocates arg_stack_space * kPointerSize |
(...skipping 904 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1118 void Abort(const char* msg); | 1111 void Abort(const char* msg); |
1119 | 1112 |
1120 // Check that the stack is aligned. | 1113 // Check that the stack is aligned. |
1121 void CheckStackAlignment(); | 1114 void CheckStackAlignment(); |
1122 | 1115 |
1123 // Verify restrictions about code generated in stubs. | 1116 // Verify restrictions about code generated in stubs. |
1124 void set_generating_stub(bool value) { generating_stub_ = value; } | 1117 void set_generating_stub(bool value) { generating_stub_ = value; } |
1125 bool generating_stub() { return generating_stub_; } | 1118 bool generating_stub() { return generating_stub_; } |
1126 void set_allow_stub_calls(bool value) { allow_stub_calls_ = value; } | 1119 void set_allow_stub_calls(bool value) { allow_stub_calls_ = value; } |
1127 bool allow_stub_calls() { return allow_stub_calls_; } | 1120 bool allow_stub_calls() { return allow_stub_calls_; } |
| 1121 void set_has_frame(bool value) { has_frame_ = value; } |
| 1122 bool has_frame() { return has_frame_; } |
| 1123 inline bool AllowThisStubCall(CodeStub* stub); |
1128 | 1124 |
1129 static int SafepointRegisterStackIndex(Register reg) { | 1125 static int SafepointRegisterStackIndex(Register reg) { |
1130 return SafepointRegisterStackIndex(reg.code()); | 1126 return SafepointRegisterStackIndex(reg.code()); |
1131 } | 1127 } |
1132 | 1128 |
| 1129 // Activation support. |
| 1130 void EnterFrame(StackFrame::Type type); |
| 1131 void LeaveFrame(StackFrame::Type type); |
| 1132 |
1133 private: | 1133 private: |
1134 // Order general registers are pushed by Pushad. | 1134 // Order general registers are pushed by Pushad. |
1135 // rax, rcx, rdx, rbx, rsi, rdi, r8, r9, r11, r14, r15. | 1135 // rax, rcx, rdx, rbx, rsi, rdi, r8, r9, r11, r14, r15. |
1136 static int kSafepointPushRegisterIndices[Register::kNumRegisters]; | 1136 static int kSafepointPushRegisterIndices[Register::kNumRegisters]; |
1137 static const int kNumSafepointSavedRegisters = 11; | 1137 static const int kNumSafepointSavedRegisters = 11; |
1138 static const int kSmiShift = kSmiTagSize + kSmiShiftSize; | 1138 static const int kSmiShift = kSmiTagSize + kSmiShiftSize; |
1139 | 1139 |
1140 bool generating_stub_; | 1140 bool generating_stub_; |
1141 bool allow_stub_calls_; | 1141 bool allow_stub_calls_; |
| 1142 bool has_frame_; |
1142 bool root_array_available_; | 1143 bool root_array_available_; |
1143 | 1144 |
1144 // Returns a register holding the smi value. The register MUST NOT be | 1145 // Returns a register holding the smi value. The register MUST NOT be |
1145 // modified. It may be the "smi 1 constant" register. | 1146 // modified. It may be the "smi 1 constant" register. |
1146 Register GetSmiConstant(Smi* value); | 1147 Register GetSmiConstant(Smi* value); |
1147 | 1148 |
1148 // Moves the smi value to the destination register. | 1149 // Moves the smi value to the destination register. |
1149 void LoadSmiConstant(Register dst, Smi* value); | 1150 void LoadSmiConstant(Register dst, Smi* value); |
1150 | 1151 |
1151 // This handle will be patched with the code object on installation. | 1152 // This handle will be patched with the code object on installation. |
1152 Handle<Object> code_object_; | 1153 Handle<Object> code_object_; |
1153 | 1154 |
1154 // Helper functions for generating invokes. | 1155 // Helper functions for generating invokes. |
1155 void InvokePrologue(const ParameterCount& expected, | 1156 void InvokePrologue(const ParameterCount& expected, |
1156 const ParameterCount& actual, | 1157 const ParameterCount& actual, |
1157 Handle<Code> code_constant, | 1158 Handle<Code> code_constant, |
1158 Register code_register, | 1159 Register code_register, |
1159 Label* done, | 1160 Label* done, |
1160 InvokeFlag flag, | 1161 InvokeFlag flag, |
1161 Label::Distance near_jump = Label::kFar, | 1162 Label::Distance near_jump = Label::kFar, |
1162 const CallWrapper& call_wrapper = NullCallWrapper(), | 1163 const CallWrapper& call_wrapper = NullCallWrapper(), |
1163 CallKind call_kind = CALL_AS_METHOD); | 1164 CallKind call_kind = CALL_AS_METHOD); |
1164 | 1165 |
1165 // Activation support. | |
1166 void EnterFrame(StackFrame::Type type); | |
1167 void LeaveFrame(StackFrame::Type type); | |
1168 | |
1169 void EnterExitFramePrologue(bool save_rax); | 1166 void EnterExitFramePrologue(bool save_rax); |
1170 | 1167 |
1171 // Allocates arg_stack_space * kPointerSize memory (not GCed) on the stack | 1168 // Allocates arg_stack_space * kPointerSize memory (not GCed) on the stack |
1172 // accessible via StackSpaceOperand. | 1169 // accessible via StackSpaceOperand. |
1173 void EnterExitFrameEpilogue(int arg_stack_space, bool save_doubles); | 1170 void EnterExitFrameEpilogue(int arg_stack_space, bool save_doubles); |
1174 | 1171 |
1175 void LeaveExitFrameEpilogue(); | 1172 void LeaveExitFrameEpilogue(); |
1176 | 1173 |
1177 // Allocation support helpers. | 1174 // Allocation support helpers. |
1178 // Loads the top of new-space into the result register. | 1175 // Loads the top of new-space into the result register. |
(...skipping 19 matching lines...) Expand all Loading... |
1198 static int SafepointRegisterStackIndex(int reg_code) { | 1195 static int SafepointRegisterStackIndex(int reg_code) { |
1199 return kNumSafepointRegisters - kSafepointPushRegisterIndices[reg_code] - 1; | 1196 return kNumSafepointRegisters - kSafepointPushRegisterIndices[reg_code] - 1; |
1200 } | 1197 } |
1201 | 1198 |
1202 // Needs access to SafepointRegisterStackIndex for optimized frame | 1199 // Needs access to SafepointRegisterStackIndex for optimized frame |
1203 // traversal. | 1200 // traversal. |
1204 friend class OptimizedFrame; | 1201 friend class OptimizedFrame; |
1205 }; | 1202 }; |
1206 | 1203 |
1207 | 1204 |
| 1205 class FrameScope { |
| 1206 public: |
| 1207 explicit FrameScope(MacroAssembler* masm, StackFrame::Type type) |
| 1208 : masm_(masm), type_(type) { |
| 1209 ASSERT(!masm->has_frame()); |
| 1210 masm->set_has_frame(true); |
| 1211 if (type != StackFrame::NONE) { |
| 1212 masm->EnterFrame(type); |
| 1213 } |
| 1214 } |
| 1215 |
| 1216 ~FrameScope() { |
| 1217 if (type_ != StackFrame::NONE) { |
| 1218 masm_->LeaveFrame(type_); |
| 1219 } |
| 1220 masm_->set_has_frame(false); |
| 1221 } |
| 1222 |
| 1223 // Normally we generate the leave-frame code when this object goes |
| 1224 // out of scope. Sometimes we may need to generate the code somewhere else |
| 1225 // in addition. Calling this will achieve that, but the object stays in |
| 1226 // scope, the MacroAssembler is still marked as being in a frame scope, and |
| 1227 // the code will be generated again when it goes out of scope. |
| 1228 void GenerateLeaveFrame() { |
| 1229 masm_->LeaveFrame(type_); |
| 1230 } |
| 1231 |
| 1232 private: |
| 1233 MacroAssembler* masm_; |
| 1234 StackFrame::Type type_; |
| 1235 }; |
| 1236 |
| 1237 |
| 1238 class NoCurrentFrameScope { |
| 1239 public: |
| 1240 explicit NoCurrentFrameScope(MacroAssembler* masm) |
| 1241 : masm_(masm), saved_(masm->has_frame()) { |
| 1242 masm->set_has_frame(false); |
| 1243 } |
| 1244 |
| 1245 ~NoCurrentFrameScope() { |
| 1246 masm_->set_has_frame(saved_); |
| 1247 } |
| 1248 |
| 1249 private: |
| 1250 MacroAssembler* masm_; |
| 1251 bool saved_; |
| 1252 }; |
| 1253 |
| 1254 |
1208 // The code patcher is used to patch (typically) small parts of code e.g. for | 1255 // The code patcher is used to patch (typically) small parts of code e.g. for |
1209 // debugging and other types of instrumentation. When using the code patcher | 1256 // debugging and other types of instrumentation. When using the code patcher |
1210 // the exact number of bytes specified must be emitted. Is not legal to emit | 1257 // the exact number of bytes specified must be emitted. Is not legal to emit |
1211 // relocation information. If any of these constraints are violated it causes | 1258 // relocation information. If any of these constraints are violated it causes |
1212 // an assertion. | 1259 // an assertion. |
1213 class CodePatcher { | 1260 class CodePatcher { |
1214 public: | 1261 public: |
1215 CodePatcher(byte* address, int size); | 1262 CodePatcher(byte* address, int size); |
1216 virtual ~CodePatcher(); | 1263 virtual ~CodePatcher(); |
1217 | 1264 |
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1282 masm->popfd(); \ | 1329 masm->popfd(); \ |
1283 } \ | 1330 } \ |
1284 masm-> | 1331 masm-> |
1285 #else | 1332 #else |
1286 #define ACCESS_MASM(masm) masm-> | 1333 #define ACCESS_MASM(masm) masm-> |
1287 #endif | 1334 #endif |
1288 | 1335 |
1289 } } // namespace v8::internal | 1336 } } // namespace v8::internal |
1290 | 1337 |
1291 #endif // V8_X64_MACRO_ASSEMBLER_X64_H_ | 1338 #endif // V8_X64_MACRO_ASSEMBLER_X64_H_ |
OLD | NEW |