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 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
117 void FastNewContextStub::Generate(MacroAssembler* masm) { | 117 void FastNewContextStub::Generate(MacroAssembler* masm) { |
118 // Try to allocate the context in new space. | 118 // Try to allocate the context in new space. |
119 Label gc; | 119 Label gc; |
120 int length = slots_ + Context::MIN_CONTEXT_SLOTS; | 120 int length = slots_ + Context::MIN_CONTEXT_SLOTS; |
121 __ AllocateInNewSpace((length * kPointerSize) + FixedArray::kHeaderSize, | 121 __ AllocateInNewSpace((length * kPointerSize) + FixedArray::kHeaderSize, |
122 rax, rbx, rcx, &gc, TAG_OBJECT); | 122 rax, rbx, rcx, &gc, TAG_OBJECT); |
123 | 123 |
124 // Get the function from the stack. | 124 // Get the function from the stack. |
125 __ movq(rcx, Operand(rsp, 1 * kPointerSize)); | 125 __ movq(rcx, Operand(rsp, 1 * kPointerSize)); |
126 | 126 |
127 // Setup the object header. | 127 // Set up the object header. |
128 __ LoadRoot(kScratchRegister, Heap::kFunctionContextMapRootIndex); | 128 __ LoadRoot(kScratchRegister, Heap::kFunctionContextMapRootIndex); |
129 __ movq(FieldOperand(rax, HeapObject::kMapOffset), kScratchRegister); | 129 __ movq(FieldOperand(rax, HeapObject::kMapOffset), kScratchRegister); |
130 __ Move(FieldOperand(rax, FixedArray::kLengthOffset), Smi::FromInt(length)); | 130 __ Move(FieldOperand(rax, FixedArray::kLengthOffset), Smi::FromInt(length)); |
131 | 131 |
132 // Setup the fixed slots. | 132 // Set up the fixed slots. |
133 __ Set(rbx, 0); // Set to NULL. | 133 __ Set(rbx, 0); // Set to NULL. |
134 __ movq(Operand(rax, Context::SlotOffset(Context::CLOSURE_INDEX)), rcx); | 134 __ movq(Operand(rax, Context::SlotOffset(Context::CLOSURE_INDEX)), rcx); |
135 __ movq(Operand(rax, Context::SlotOffset(Context::PREVIOUS_INDEX)), rsi); | 135 __ movq(Operand(rax, Context::SlotOffset(Context::PREVIOUS_INDEX)), rsi); |
136 __ movq(Operand(rax, Context::SlotOffset(Context::EXTENSION_INDEX)), rbx); | 136 __ movq(Operand(rax, Context::SlotOffset(Context::EXTENSION_INDEX)), rbx); |
137 | 137 |
138 // Copy the global object from the previous context. | 138 // Copy the global object from the previous context. |
139 __ movq(rbx, Operand(rsi, Context::SlotOffset(Context::GLOBAL_INDEX))); | 139 __ movq(rbx, Operand(rsi, Context::SlotOffset(Context::GLOBAL_INDEX))); |
140 __ movq(Operand(rax, Context::SlotOffset(Context::GLOBAL_INDEX)), rbx); | 140 __ movq(Operand(rax, Context::SlotOffset(Context::GLOBAL_INDEX)), rbx); |
141 | 141 |
142 // Initialize the rest of the slots to undefined. | 142 // Initialize the rest of the slots to undefined. |
(...skipping 23 matching lines...) Expand all Loading... |
166 int length = slots_ + Context::MIN_CONTEXT_SLOTS; | 166 int length = slots_ + Context::MIN_CONTEXT_SLOTS; |
167 __ AllocateInNewSpace(FixedArray::SizeFor(length), | 167 __ AllocateInNewSpace(FixedArray::SizeFor(length), |
168 rax, rbx, rcx, &gc, TAG_OBJECT); | 168 rax, rbx, rcx, &gc, TAG_OBJECT); |
169 | 169 |
170 // Get the function from the stack. | 170 // Get the function from the stack. |
171 __ movq(rcx, Operand(rsp, 1 * kPointerSize)); | 171 __ movq(rcx, Operand(rsp, 1 * kPointerSize)); |
172 | 172 |
173 // Get the serialized scope info from the stack. | 173 // Get the serialized scope info from the stack. |
174 __ movq(rbx, Operand(rsp, 2 * kPointerSize)); | 174 __ movq(rbx, Operand(rsp, 2 * kPointerSize)); |
175 | 175 |
176 // Setup the object header. | 176 // Set up the object header. |
177 __ LoadRoot(kScratchRegister, Heap::kBlockContextMapRootIndex); | 177 __ LoadRoot(kScratchRegister, Heap::kBlockContextMapRootIndex); |
178 __ movq(FieldOperand(rax, HeapObject::kMapOffset), kScratchRegister); | 178 __ movq(FieldOperand(rax, HeapObject::kMapOffset), kScratchRegister); |
179 __ Move(FieldOperand(rax, FixedArray::kLengthOffset), Smi::FromInt(length)); | 179 __ Move(FieldOperand(rax, FixedArray::kLengthOffset), Smi::FromInt(length)); |
180 | 180 |
181 // If this block context is nested in the global context we get a smi | 181 // If this block context is nested in the global context we get a smi |
182 // sentinel instead of a function. The block context should get the | 182 // sentinel instead of a function. The block context should get the |
183 // canonical empty function of the global context as its closure which | 183 // canonical empty function of the global context as its closure which |
184 // we still have to look up. | 184 // we still have to look up. |
185 Label after_sentinel; | 185 Label after_sentinel; |
186 __ JumpIfNotSmi(rcx, &after_sentinel, Label::kNear); | 186 __ JumpIfNotSmi(rcx, &after_sentinel, Label::kNear); |
187 if (FLAG_debug_code) { | 187 if (FLAG_debug_code) { |
188 const char* message = "Expected 0 as a Smi sentinel"; | 188 const char* message = "Expected 0 as a Smi sentinel"; |
189 __ cmpq(rcx, Immediate(0)); | 189 __ cmpq(rcx, Immediate(0)); |
190 __ Assert(equal, message); | 190 __ Assert(equal, message); |
191 } | 191 } |
192 __ movq(rcx, GlobalObjectOperand()); | 192 __ movq(rcx, GlobalObjectOperand()); |
193 __ movq(rcx, FieldOperand(rcx, GlobalObject::kGlobalContextOffset)); | 193 __ movq(rcx, FieldOperand(rcx, GlobalObject::kGlobalContextOffset)); |
194 __ movq(rcx, ContextOperand(rcx, Context::CLOSURE_INDEX)); | 194 __ movq(rcx, ContextOperand(rcx, Context::CLOSURE_INDEX)); |
195 __ bind(&after_sentinel); | 195 __ bind(&after_sentinel); |
196 | 196 |
197 // Setup the fixed slots. | 197 // Set up the fixed slots. |
198 __ movq(ContextOperand(rax, Context::CLOSURE_INDEX), rcx); | 198 __ movq(ContextOperand(rax, Context::CLOSURE_INDEX), rcx); |
199 __ movq(ContextOperand(rax, Context::PREVIOUS_INDEX), rsi); | 199 __ movq(ContextOperand(rax, Context::PREVIOUS_INDEX), rsi); |
200 __ movq(ContextOperand(rax, Context::EXTENSION_INDEX), rbx); | 200 __ movq(ContextOperand(rax, Context::EXTENSION_INDEX), rbx); |
201 | 201 |
202 // Copy the global object from the previous context. | 202 // Copy the global object from the previous context. |
203 __ movq(rbx, ContextOperand(rsi, Context::GLOBAL_INDEX)); | 203 __ movq(rbx, ContextOperand(rsi, Context::GLOBAL_INDEX)); |
204 __ movq(ContextOperand(rax, Context::GLOBAL_INDEX), rbx); | 204 __ movq(ContextOperand(rax, Context::GLOBAL_INDEX), rbx); |
205 | 205 |
206 // Initialize the rest of the slots to the hole value. | 206 // Initialize the rest of the slots to the hole value. |
207 __ LoadRoot(rbx, Heap::kTheHoleValueRootIndex); | 207 __ LoadRoot(rbx, Heap::kTheHoleValueRootIndex); |
(...skipping 2184 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2392 // rax = address of new object (tagged) | 2392 // rax = address of new object (tagged) |
2393 // rbx = mapped parameter count (untagged) | 2393 // rbx = mapped parameter count (untagged) |
2394 // rcx = argument count (untagged) | 2394 // rcx = argument count (untagged) |
2395 // rdi = address of boilerplate object (tagged) | 2395 // rdi = address of boilerplate object (tagged) |
2396 // Copy the JS object part. | 2396 // Copy the JS object part. |
2397 for (int i = 0; i < JSObject::kHeaderSize; i += kPointerSize) { | 2397 for (int i = 0; i < JSObject::kHeaderSize; i += kPointerSize) { |
2398 __ movq(rdx, FieldOperand(rdi, i)); | 2398 __ movq(rdx, FieldOperand(rdi, i)); |
2399 __ movq(FieldOperand(rax, i), rdx); | 2399 __ movq(FieldOperand(rax, i), rdx); |
2400 } | 2400 } |
2401 | 2401 |
2402 // Setup the callee in-object property. | 2402 // Set up the callee in-object property. |
2403 STATIC_ASSERT(Heap::kArgumentsCalleeIndex == 1); | 2403 STATIC_ASSERT(Heap::kArgumentsCalleeIndex == 1); |
2404 __ movq(rdx, Operand(rsp, 3 * kPointerSize)); | 2404 __ movq(rdx, Operand(rsp, 3 * kPointerSize)); |
2405 __ movq(FieldOperand(rax, JSObject::kHeaderSize + | 2405 __ movq(FieldOperand(rax, JSObject::kHeaderSize + |
2406 Heap::kArgumentsCalleeIndex * kPointerSize), | 2406 Heap::kArgumentsCalleeIndex * kPointerSize), |
2407 rdx); | 2407 rdx); |
2408 | 2408 |
2409 // Use the length (smi tagged) and set that as an in-object property too. | 2409 // Use the length (smi tagged) and set that as an in-object property too. |
2410 // Note: rcx is tagged from here on. | 2410 // Note: rcx is tagged from here on. |
2411 STATIC_ASSERT(Heap::kArgumentsLengthIndex == 0); | 2411 STATIC_ASSERT(Heap::kArgumentsLengthIndex == 0); |
2412 __ Integer32ToSmi(rcx, rcx); | 2412 __ Integer32ToSmi(rcx, rcx); |
2413 __ movq(FieldOperand(rax, JSObject::kHeaderSize + | 2413 __ movq(FieldOperand(rax, JSObject::kHeaderSize + |
2414 Heap::kArgumentsLengthIndex * kPointerSize), | 2414 Heap::kArgumentsLengthIndex * kPointerSize), |
2415 rcx); | 2415 rcx); |
2416 | 2416 |
2417 // Setup the elements pointer in the allocated arguments object. | 2417 // Set up the elements pointer in the allocated arguments object. |
2418 // If we allocated a parameter map, edi will point there, otherwise to the | 2418 // If we allocated a parameter map, edi will point there, otherwise to the |
2419 // backing store. | 2419 // backing store. |
2420 __ lea(rdi, Operand(rax, Heap::kArgumentsObjectSize)); | 2420 __ lea(rdi, Operand(rax, Heap::kArgumentsObjectSize)); |
2421 __ movq(FieldOperand(rax, JSObject::kElementsOffset), rdi); | 2421 __ movq(FieldOperand(rax, JSObject::kElementsOffset), rdi); |
2422 | 2422 |
2423 // rax = address of new object (tagged) | 2423 // rax = address of new object (tagged) |
2424 // rbx = mapped parameter count (untagged) | 2424 // rbx = mapped parameter count (untagged) |
2425 // rcx = argument count (tagged) | 2425 // rcx = argument count (tagged) |
2426 // rdi = address of parameter map or backing store (tagged) | 2426 // rdi = address of parameter map or backing store (tagged) |
2427 | 2427 |
(...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2614 rcx); | 2614 rcx); |
2615 | 2615 |
2616 // If there are no actual arguments, we're done. | 2616 // If there are no actual arguments, we're done. |
2617 Label done; | 2617 Label done; |
2618 __ testq(rcx, rcx); | 2618 __ testq(rcx, rcx); |
2619 __ j(zero, &done); | 2619 __ j(zero, &done); |
2620 | 2620 |
2621 // Get the parameters pointer from the stack. | 2621 // Get the parameters pointer from the stack. |
2622 __ movq(rdx, Operand(rsp, 2 * kPointerSize)); | 2622 __ movq(rdx, Operand(rsp, 2 * kPointerSize)); |
2623 | 2623 |
2624 // Setup the elements pointer in the allocated arguments object and | 2624 // Set up the elements pointer in the allocated arguments object and |
2625 // initialize the header in the elements fixed array. | 2625 // initialize the header in the elements fixed array. |
2626 __ lea(rdi, Operand(rax, Heap::kArgumentsObjectSizeStrict)); | 2626 __ lea(rdi, Operand(rax, Heap::kArgumentsObjectSizeStrict)); |
2627 __ movq(FieldOperand(rax, JSObject::kElementsOffset), rdi); | 2627 __ movq(FieldOperand(rax, JSObject::kElementsOffset), rdi); |
2628 __ LoadRoot(kScratchRegister, Heap::kFixedArrayMapRootIndex); | 2628 __ LoadRoot(kScratchRegister, Heap::kFixedArrayMapRootIndex); |
2629 __ movq(FieldOperand(rdi, FixedArray::kMapOffset), kScratchRegister); | 2629 __ movq(FieldOperand(rdi, FixedArray::kMapOffset), kScratchRegister); |
2630 | 2630 |
2631 | 2631 |
2632 __ movq(FieldOperand(rdi, FixedArray::kLengthOffset), rcx); | 2632 __ movq(FieldOperand(rdi, FixedArray::kLengthOffset), rcx); |
2633 // Untag the length for the loop below. | 2633 // Untag the length for the loop below. |
2634 __ SmiToInteger64(rcx, rcx); | 2634 __ SmiToInteger64(rcx, rcx); |
(...skipping 1300 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3935 __ bind(&throw_normal_exception); | 3935 __ bind(&throw_normal_exception); |
3936 GenerateThrowTOS(masm); | 3936 GenerateThrowTOS(masm); |
3937 } | 3937 } |
3938 | 3938 |
3939 | 3939 |
3940 void JSEntryStub::GenerateBody(MacroAssembler* masm, bool is_construct) { | 3940 void JSEntryStub::GenerateBody(MacroAssembler* masm, bool is_construct) { |
3941 Label invoke, handler_entry, exit; | 3941 Label invoke, handler_entry, exit; |
3942 Label not_outermost_js, not_outermost_js_2; | 3942 Label not_outermost_js, not_outermost_js_2; |
3943 { // NOLINT. Scope block confuses linter. | 3943 { // NOLINT. Scope block confuses linter. |
3944 MacroAssembler::NoRootArrayScope uninitialized_root_register(masm); | 3944 MacroAssembler::NoRootArrayScope uninitialized_root_register(masm); |
3945 // Setup frame. | 3945 // Set up frame. |
3946 __ push(rbp); | 3946 __ push(rbp); |
3947 __ movq(rbp, rsp); | 3947 __ movq(rbp, rsp); |
3948 | 3948 |
3949 // Push the stack frame type marker twice. | 3949 // Push the stack frame type marker twice. |
3950 int marker = is_construct ? StackFrame::ENTRY_CONSTRUCT : StackFrame::ENTRY; | 3950 int marker = is_construct ? StackFrame::ENTRY_CONSTRUCT : StackFrame::ENTRY; |
3951 // Scratch register is neither callee-save, nor an argument register on any | 3951 // Scratch register is neither callee-save, nor an argument register on any |
3952 // platform. It's free to use at this point. | 3952 // platform. It's free to use at this point. |
3953 // Cannot use smi-register for loading yet. | 3953 // Cannot use smi-register for loading yet. |
3954 __ movq(kScratchRegister, | 3954 __ movq(kScratchRegister, |
3955 reinterpret_cast<uint64_t>(Smi::FromInt(marker)), | 3955 reinterpret_cast<uint64_t>(Smi::FromInt(marker)), |
(...skipping 1116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5072 FieldOperand(rax, rdx, times_1, SeqAsciiString::kHeaderSize + 1)); | 5072 FieldOperand(rax, rdx, times_1, SeqAsciiString::kHeaderSize + 1)); |
5073 | 5073 |
5074 // Try to lookup two character string in symbol table. | 5074 // Try to lookup two character string in symbol table. |
5075 Label make_two_character_string; | 5075 Label make_two_character_string; |
5076 StringHelper::GenerateTwoCharacterSymbolTableProbe( | 5076 StringHelper::GenerateTwoCharacterSymbolTableProbe( |
5077 masm, rbx, rdi, r9, r11, r14, r15, &make_two_character_string); | 5077 masm, rbx, rdi, r9, r11, r14, r15, &make_two_character_string); |
5078 __ IncrementCounter(counters->sub_string_native(), 1); | 5078 __ IncrementCounter(counters->sub_string_native(), 1); |
5079 __ ret(3 * kPointerSize); | 5079 __ ret(3 * kPointerSize); |
5080 | 5080 |
5081 __ bind(&make_two_character_string); | 5081 __ bind(&make_two_character_string); |
5082 // Setup registers for allocating the two character string. | 5082 // Set up registers for allocating the two character string. |
5083 __ movzxwq(rbx, FieldOperand(rax, rdx, times_1, SeqAsciiString::kHeaderSize)); | 5083 __ movzxwq(rbx, FieldOperand(rax, rdx, times_1, SeqAsciiString::kHeaderSize)); |
5084 __ AllocateAsciiString(rax, rcx, r11, r14, r15, &runtime); | 5084 __ AllocateAsciiString(rax, rcx, r11, r14, r15, &runtime); |
5085 __ movw(FieldOperand(rax, SeqAsciiString::kHeaderSize), rbx); | 5085 __ movw(FieldOperand(rax, SeqAsciiString::kHeaderSize), rbx); |
5086 __ IncrementCounter(counters->sub_string_native(), 1); | 5086 __ IncrementCounter(counters->sub_string_native(), 1); |
5087 __ ret(3 * kPointerSize); | 5087 __ ret(3 * kPointerSize); |
5088 | 5088 |
5089 __ bind(&result_longer_than_two); | 5089 __ bind(&result_longer_than_two); |
5090 // rax: string | 5090 // rax: string |
5091 // rbx: instance type | 5091 // rbx: instance type |
5092 // rcx: sub string length | 5092 // rcx: sub string length |
(...skipping 1140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
6233 xmm0, | 6233 xmm0, |
6234 &slow_elements); | 6234 &slow_elements); |
6235 __ ret(0); | 6235 __ ret(0); |
6236 } | 6236 } |
6237 | 6237 |
6238 #undef __ | 6238 #undef __ |
6239 | 6239 |
6240 } } // namespace v8::internal | 6240 } } // namespace v8::internal |
6241 | 6241 |
6242 #endif // V8_TARGET_ARCH_X64 | 6242 #endif // V8_TARGET_ARCH_X64 |
OLD | NEW |