deps: update v8 to 4.3.61.21
[platform/upstream/nodejs.git] / deps / v8 / src / ic / mips64 / handler-compiler-mips64.cc
1 // Copyright 2014 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "src/v8.h"
6
7 #if V8_TARGET_ARCH_MIPS64
8
9 #include "src/ic/call-optimization.h"
10 #include "src/ic/handler-compiler.h"
11 #include "src/ic/ic.h"
12
13 namespace v8 {
14 namespace internal {
15
16 #define __ ACCESS_MASM(masm)
17
18
19 void NamedLoadHandlerCompiler::GenerateLoadViaGetter(
20     MacroAssembler* masm, Handle<Map> map, Register receiver, Register holder,
21     int accessor_index, int expected_arguments, Register scratch) {
22   // ----------- S t a t e -------------
23   //  -- a0    : receiver
24   //  -- a2    : name
25   //  -- ra    : return address
26   // -----------------------------------
27   {
28     FrameScope scope(masm, StackFrame::INTERNAL);
29
30     if (accessor_index >= 0) {
31       DCHECK(!holder.is(scratch));
32       DCHECK(!receiver.is(scratch));
33       // Call the JavaScript getter with the receiver on the stack.
34       if (map->IsJSGlobalObjectMap()) {
35         // Swap in the global receiver.
36         __ ld(scratch,
37               FieldMemOperand(receiver, JSGlobalObject::kGlobalProxyOffset));
38         receiver = scratch;
39       }
40       __ push(receiver);
41       ParameterCount actual(0);
42       ParameterCount expected(expected_arguments);
43       __ LoadAccessor(a1, holder, accessor_index, ACCESSOR_GETTER);
44       __ InvokeFunction(a1, expected, actual, CALL_FUNCTION, NullCallWrapper());
45     } else {
46       // If we generate a global code snippet for deoptimization only, remember
47       // the place to continue after deoptimization.
48       masm->isolate()->heap()->SetGetterStubDeoptPCOffset(masm->pc_offset());
49     }
50
51     // Restore context register.
52     __ ld(cp, MemOperand(fp, StandardFrameConstants::kContextOffset));
53   }
54   __ Ret();
55 }
56
57
58 void NamedStoreHandlerCompiler::GenerateStoreViaSetter(
59     MacroAssembler* masm, Handle<Map> map, Register receiver, Register holder,
60     int accessor_index, int expected_arguments, Register scratch) {
61   // ----------- S t a t e -------------
62   //  -- ra    : return address
63   // -----------------------------------
64   {
65     FrameScope scope(masm, StackFrame::INTERNAL);
66
67     // Save value register, so we can restore it later.
68     __ push(value());
69
70     if (accessor_index >= 0) {
71       DCHECK(!holder.is(scratch));
72       DCHECK(!receiver.is(scratch));
73       DCHECK(!value().is(scratch));
74       // Call the JavaScript setter with receiver and value on the stack.
75       if (map->IsJSGlobalObjectMap()) {
76         // Swap in the global receiver.
77         __ ld(scratch,
78               FieldMemOperand(receiver, JSGlobalObject::kGlobalProxyOffset));
79         receiver = scratch;
80       }
81       __ Push(receiver, value());
82       ParameterCount actual(1);
83       ParameterCount expected(expected_arguments);
84       __ LoadAccessor(a1, holder, accessor_index, ACCESSOR_SETTER);
85       __ InvokeFunction(a1, expected, actual, CALL_FUNCTION, NullCallWrapper());
86     } else {
87       // If we generate a global code snippet for deoptimization only, remember
88       // the place to continue after deoptimization.
89       masm->isolate()->heap()->SetSetterStubDeoptPCOffset(masm->pc_offset());
90     }
91
92     // We have to return the passed value, not the return value of the setter.
93     __ pop(v0);
94
95     // Restore context register.
96     __ ld(cp, MemOperand(fp, StandardFrameConstants::kContextOffset));
97   }
98   __ Ret();
99 }
100
101
102 void PropertyHandlerCompiler::PushVectorAndSlot(Register vector,
103                                                 Register slot) {
104   MacroAssembler* masm = this->masm();
105   __ Push(vector, slot);
106 }
107
108
109 void PropertyHandlerCompiler::PopVectorAndSlot(Register vector, Register slot) {
110   MacroAssembler* masm = this->masm();
111   __ Pop(vector, slot);
112 }
113
114
115 void PropertyHandlerCompiler::DiscardVectorAndSlot() {
116   MacroAssembler* masm = this->masm();
117   // Remove vector and slot.
118   __ Daddu(sp, sp, Operand(2 * kPointerSize));
119 }
120
121
122 void PropertyHandlerCompiler::GenerateDictionaryNegativeLookup(
123     MacroAssembler* masm, Label* miss_label, Register receiver,
124     Handle<Name> name, Register scratch0, Register scratch1) {
125   DCHECK(name->IsUniqueName());
126   DCHECK(!receiver.is(scratch0));
127   Counters* counters = masm->isolate()->counters();
128   __ IncrementCounter(counters->negative_lookups(), 1, scratch0, scratch1);
129   __ IncrementCounter(counters->negative_lookups_miss(), 1, scratch0, scratch1);
130
131   Label done;
132
133   const int kInterceptorOrAccessCheckNeededMask =
134       (1 << Map::kHasNamedInterceptor) | (1 << Map::kIsAccessCheckNeeded);
135
136   // Bail out if the receiver has a named interceptor or requires access checks.
137   Register map = scratch1;
138   __ ld(map, FieldMemOperand(receiver, HeapObject::kMapOffset));
139   __ lbu(scratch0, FieldMemOperand(map, Map::kBitFieldOffset));
140   __ And(scratch0, scratch0, Operand(kInterceptorOrAccessCheckNeededMask));
141   __ Branch(miss_label, ne, scratch0, Operand(zero_reg));
142
143   // Check that receiver is a JSObject.
144   __ lbu(scratch0, FieldMemOperand(map, Map::kInstanceTypeOffset));
145   __ Branch(miss_label, lt, scratch0, Operand(FIRST_SPEC_OBJECT_TYPE));
146
147   // Load properties array.
148   Register properties = scratch0;
149   __ ld(properties, FieldMemOperand(receiver, JSObject::kPropertiesOffset));
150   // Check that the properties array is a dictionary.
151   __ ld(map, FieldMemOperand(properties, HeapObject::kMapOffset));
152   Register tmp = properties;
153   __ LoadRoot(tmp, Heap::kHashTableMapRootIndex);
154   __ Branch(miss_label, ne, map, Operand(tmp));
155
156   // Restore the temporarily used register.
157   __ ld(properties, FieldMemOperand(receiver, JSObject::kPropertiesOffset));
158
159
160   NameDictionaryLookupStub::GenerateNegativeLookup(
161       masm, miss_label, &done, receiver, properties, name, scratch1);
162   __ bind(&done);
163   __ DecrementCounter(counters->negative_lookups_miss(), 1, scratch0, scratch1);
164 }
165
166
167 void NamedLoadHandlerCompiler::GenerateDirectLoadGlobalFunctionPrototype(
168     MacroAssembler* masm, int index, Register result, Label* miss) {
169   // Check we're still in the same context.
170   const int offset = Context::SlotOffset(Context::GLOBAL_OBJECT_INDEX);
171   __ ld(result, MemOperand(cp, offset));
172   __ ld(result, FieldMemOperand(result, GlobalObject::kNativeContextOffset));
173   __ ld(result, MemOperand(result, Context::SlotOffset(index)));
174   // Load its initial map. The global functions all have initial maps.
175   __ ld(result,
176         FieldMemOperand(result, JSFunction::kPrototypeOrInitialMapOffset));
177   // Load the prototype from the initial map.
178   __ ld(result, FieldMemOperand(result, Map::kPrototypeOffset));
179 }
180
181
182 void NamedLoadHandlerCompiler::GenerateLoadFunctionPrototype(
183     MacroAssembler* masm, Register receiver, Register scratch1,
184     Register scratch2, Label* miss_label) {
185   __ TryGetFunctionPrototype(receiver, scratch1, scratch2, miss_label);
186   __ Ret(USE_DELAY_SLOT);
187   __ mov(v0, scratch1);
188 }
189
190
191 // Generate code to check that a global property cell is empty. Create
192 // the property cell at compilation time if no cell exists for the
193 // property.
194 void PropertyHandlerCompiler::GenerateCheckPropertyCell(
195     MacroAssembler* masm, Handle<JSGlobalObject> global, Handle<Name> name,
196     Register scratch, Label* miss) {
197   Handle<PropertyCell> cell = JSGlobalObject::EnsurePropertyCell(global, name);
198   DCHECK(cell->value()->IsTheHole());
199   Handle<WeakCell> weak_cell = masm->isolate()->factory()->NewWeakCell(cell);
200   __ LoadWeakValue(scratch, weak_cell, miss);
201   __ ld(scratch, FieldMemOperand(scratch, PropertyCell::kValueOffset));
202   __ LoadRoot(at, Heap::kTheHoleValueRootIndex);
203   __ Branch(miss, ne, scratch, Operand(at));
204 }
205
206
207 static void PushInterceptorArguments(MacroAssembler* masm, Register receiver,
208                                      Register holder, Register name,
209                                      Handle<JSObject> holder_obj) {
210   STATIC_ASSERT(NamedLoadHandlerCompiler::kInterceptorArgsNameIndex == 0);
211   STATIC_ASSERT(NamedLoadHandlerCompiler::kInterceptorArgsThisIndex == 1);
212   STATIC_ASSERT(NamedLoadHandlerCompiler::kInterceptorArgsHolderIndex == 2);
213   STATIC_ASSERT(NamedLoadHandlerCompiler::kInterceptorArgsLength == 3);
214   __ Push(name, receiver, holder);
215 }
216
217
218 static void CompileCallLoadPropertyWithInterceptor(
219     MacroAssembler* masm, Register receiver, Register holder, Register name,
220     Handle<JSObject> holder_obj, IC::UtilityId id) {
221   PushInterceptorArguments(masm, receiver, holder, name, holder_obj);
222   __ CallExternalReference(ExternalReference(IC_Utility(id), masm->isolate()),
223                            NamedLoadHandlerCompiler::kInterceptorArgsLength);
224 }
225
226
227 // Generate call to api function.
228 void PropertyHandlerCompiler::GenerateApiAccessorCall(
229     MacroAssembler* masm, const CallOptimization& optimization,
230     Handle<Map> receiver_map, Register receiver, Register scratch_in,
231     bool is_store, Register store_parameter, Register accessor_holder,
232     int accessor_index) {
233   DCHECK(!accessor_holder.is(scratch_in));
234   DCHECK(!receiver.is(scratch_in));
235   __ push(receiver);
236   // Write the arguments to stack frame.
237   if (is_store) {
238     DCHECK(!receiver.is(store_parameter));
239     DCHECK(!scratch_in.is(store_parameter));
240     __ push(store_parameter);
241   }
242   DCHECK(optimization.is_simple_api_call());
243
244   // Abi for CallApiFunctionStub.
245   Register callee = a0;
246   Register data = a4;
247   Register holder = a2;
248   Register api_function_address = a1;
249
250   // Put callee in place.
251   __ LoadAccessor(callee, accessor_holder, accessor_index,
252                   is_store ? ACCESSOR_SETTER : ACCESSOR_GETTER);
253
254   // Put holder in place.
255   CallOptimization::HolderLookup holder_lookup;
256   int holder_depth = 0;
257   optimization.LookupHolderOfExpectedType(receiver_map, &holder_lookup,
258                                           &holder_depth);
259   switch (holder_lookup) {
260     case CallOptimization::kHolderIsReceiver:
261       __ Move(holder, receiver);
262       break;
263     case CallOptimization::kHolderFound:
264       __ ld(holder, FieldMemOperand(receiver, HeapObject::kMapOffset));
265       __ ld(holder, FieldMemOperand(holder, Map::kPrototypeOffset));
266       for (int i = 1; i < holder_depth; i++) {
267         __ ld(holder, FieldMemOperand(holder, HeapObject::kMapOffset));
268         __ ld(holder, FieldMemOperand(holder, Map::kPrototypeOffset));
269       }
270       break;
271     case CallOptimization::kHolderNotFound:
272       UNREACHABLE();
273       break;
274   }
275
276   Isolate* isolate = masm->isolate();
277   Handle<CallHandlerInfo> api_call_info = optimization.api_call_info();
278   bool call_data_undefined = false;
279   // Put call data in place.
280   if (api_call_info->data()->IsUndefined()) {
281     call_data_undefined = true;
282     __ LoadRoot(data, Heap::kUndefinedValueRootIndex);
283   } else {
284     __ ld(data, FieldMemOperand(callee, JSFunction::kSharedFunctionInfoOffset));
285     __ ld(data, FieldMemOperand(data, SharedFunctionInfo::kFunctionDataOffset));
286     __ ld(data, FieldMemOperand(data, FunctionTemplateInfo::kCallCodeOffset));
287     __ ld(data, FieldMemOperand(data, CallHandlerInfo::kDataOffset));
288   }
289   // Put api_function_address in place.
290   Address function_address = v8::ToCData<Address>(api_call_info->callback());
291   ApiFunction fun(function_address);
292   ExternalReference::Type type = ExternalReference::DIRECT_API_CALL;
293   ExternalReference ref = ExternalReference(&fun, type, masm->isolate());
294   __ li(api_function_address, Operand(ref));
295
296   // Jump to stub.
297   CallApiAccessorStub stub(isolate, is_store, call_data_undefined);
298   __ TailCallStub(&stub);
299 }
300
301
302 void NamedStoreHandlerCompiler::GenerateSlow(MacroAssembler* masm) {
303   // Push receiver, key and value for runtime call.
304   __ Push(StoreDescriptor::ReceiverRegister(), StoreDescriptor::NameRegister(),
305           StoreDescriptor::ValueRegister());
306
307   // The slow case calls into the runtime to complete the store without causing
308   // an IC miss that would otherwise cause a transition to the generic stub.
309   ExternalReference ref =
310       ExternalReference(IC_Utility(IC::kStoreIC_Slow), masm->isolate());
311   __ TailCallExternalReference(ref, 3, 1);
312 }
313
314
315 void ElementHandlerCompiler::GenerateStoreSlow(MacroAssembler* masm) {
316   // Push receiver, key and value for runtime call.
317   __ Push(StoreDescriptor::ReceiverRegister(), StoreDescriptor::NameRegister(),
318           StoreDescriptor::ValueRegister());
319
320   // The slow case calls into the runtime to complete the store without causing
321   // an IC miss that would otherwise cause a transition to the generic stub.
322   ExternalReference ref =
323       ExternalReference(IC_Utility(IC::kKeyedStoreIC_Slow), masm->isolate());
324   __ TailCallExternalReference(ref, 3, 1);
325 }
326
327
328 #undef __
329 #define __ ACCESS_MASM(masm())
330
331
332 void NamedStoreHandlerCompiler::GenerateRestoreName(Label* label,
333                                                     Handle<Name> name) {
334   if (!label->is_unused()) {
335     __ bind(label);
336     __ li(this->name(), Operand(name));
337   }
338 }
339
340
341 void NamedStoreHandlerCompiler::GenerateRestoreName(Handle<Name> name) {
342   __ li(this->name(), Operand(name));
343 }
344
345
346 void NamedStoreHandlerCompiler::GenerateRestoreMap(Handle<Map> transition,
347                                                    Register scratch,
348                                                    Label* miss) {
349   Handle<WeakCell> cell = Map::WeakCellForMap(transition);
350   Register map_reg = StoreTransitionDescriptor::MapRegister();
351   DCHECK(!map_reg.is(scratch));
352   __ LoadWeakValue(map_reg, cell, miss);
353   if (transition->CanBeDeprecated()) {
354     __ ld(scratch, FieldMemOperand(map_reg, Map::kBitField3Offset));
355     __ And(at, scratch, Operand(Map::Deprecated::kMask));
356     __ Branch(miss, ne, at, Operand(zero_reg));
357   }
358 }
359
360
361 void NamedStoreHandlerCompiler::GenerateConstantCheck(Register map_reg,
362                                                       int descriptor,
363                                                       Register value_reg,
364                                                       Register scratch,
365                                                       Label* miss_label) {
366   DCHECK(!map_reg.is(scratch));
367   DCHECK(!map_reg.is(value_reg));
368   DCHECK(!value_reg.is(scratch));
369   __ LoadInstanceDescriptors(map_reg, scratch);
370   __ ld(scratch,
371         FieldMemOperand(scratch, DescriptorArray::GetValueOffset(descriptor)));
372   __ Branch(miss_label, ne, value_reg, Operand(scratch));
373 }
374
375
376 void NamedStoreHandlerCompiler::GenerateFieldTypeChecks(HeapType* field_type,
377                                                         Register value_reg,
378                                                         Label* miss_label) {
379   Register map_reg = scratch1();
380   Register scratch = scratch2();
381   DCHECK(!value_reg.is(map_reg));
382   DCHECK(!value_reg.is(scratch));
383   __ JumpIfSmi(value_reg, miss_label);
384   HeapType::Iterator<Map> it = field_type->Classes();
385   if (!it.Done()) {
386     __ ld(map_reg, FieldMemOperand(value_reg, HeapObject::kMapOffset));
387     Label do_store;
388     while (true) {
389       // Compare map directly within the Branch() functions.
390       __ GetWeakValue(scratch, Map::WeakCellForMap(it.Current()));
391       it.Advance();
392       if (it.Done()) {
393         __ Branch(miss_label, ne, map_reg, Operand(scratch));
394         break;
395       }
396       __ Branch(&do_store, eq, map_reg, Operand(scratch));
397     }
398     __ bind(&do_store);
399   }
400 }
401
402
403 Register PropertyHandlerCompiler::CheckPrototypes(
404     Register object_reg, Register holder_reg, Register scratch1,
405     Register scratch2, Handle<Name> name, Label* miss,
406     PrototypeCheckType check) {
407   Handle<Map> receiver_map = map();
408
409   // Make sure there's no overlap between holder and object registers.
410   DCHECK(!scratch1.is(object_reg) && !scratch1.is(holder_reg));
411   DCHECK(!scratch2.is(object_reg) && !scratch2.is(holder_reg) &&
412          !scratch2.is(scratch1));
413
414   // Keep track of the current object in register reg.
415   Register reg = object_reg;
416   int depth = 0;
417
418   Handle<JSObject> current = Handle<JSObject>::null();
419   if (receiver_map->IsJSGlobalObjectMap()) {
420     current = isolate()->global_object();
421   }
422
423   // Check access rights to the global object.  This has to happen after
424   // the map check so that we know that the object is actually a global
425   // object.
426   // This allows us to install generated handlers for accesses to the
427   // global proxy (as opposed to using slow ICs). See corresponding code
428   // in LookupForRead().
429   if (receiver_map->IsJSGlobalProxyMap()) {
430     __ CheckAccessGlobalProxy(reg, scratch2, miss);
431   }
432
433   Handle<JSObject> prototype = Handle<JSObject>::null();
434   Handle<Map> current_map = receiver_map;
435   Handle<Map> holder_map(holder()->map());
436   // Traverse the prototype chain and check the maps in the prototype chain for
437   // fast and global objects or do negative lookup for normal objects.
438   while (!current_map.is_identical_to(holder_map)) {
439     ++depth;
440
441     // Only global objects and objects that do not require access
442     // checks are allowed in stubs.
443     DCHECK(current_map->IsJSGlobalProxyMap() ||
444            !current_map->is_access_check_needed());
445
446     prototype = handle(JSObject::cast(current_map->prototype()));
447     if (current_map->is_dictionary_map() &&
448         !current_map->IsJSGlobalObjectMap()) {
449       DCHECK(!current_map->IsJSGlobalProxyMap());  // Proxy maps are fast.
450       if (!name->IsUniqueName()) {
451         DCHECK(name->IsString());
452         name = factory()->InternalizeString(Handle<String>::cast(name));
453       }
454       DCHECK(current.is_null() ||
455              current->property_dictionary()->FindEntry(name) ==
456                  NameDictionary::kNotFound);
457
458       GenerateDictionaryNegativeLookup(masm(), miss, reg, name, scratch1,
459                                        scratch2);
460
461       __ ld(scratch1, FieldMemOperand(reg, HeapObject::kMapOffset));
462       reg = holder_reg;  // From now on the object will be in holder_reg.
463       __ ld(reg, FieldMemOperand(scratch1, Map::kPrototypeOffset));
464     } else {
465       Register map_reg = scratch1;
466       __ ld(map_reg, FieldMemOperand(reg, HeapObject::kMapOffset));
467
468       if (current_map->IsJSGlobalObjectMap()) {
469         GenerateCheckPropertyCell(masm(), Handle<JSGlobalObject>::cast(current),
470                                   name, scratch2, miss);
471       } else if (depth != 1 || check == CHECK_ALL_MAPS) {
472         Handle<WeakCell> cell = Map::WeakCellForMap(current_map);
473         __ GetWeakValue(scratch2, cell);
474         __ Branch(miss, ne, scratch2, Operand(map_reg));
475       }
476
477       reg = holder_reg;  // From now on the object will be in holder_reg.
478
479       __ ld(reg, FieldMemOperand(map_reg, Map::kPrototypeOffset));
480     }
481
482     // Go to the next object in the prototype chain.
483     current = prototype;
484     current_map = handle(current->map());
485   }
486
487   DCHECK(!current_map->IsJSGlobalProxyMap());
488
489   // Log the check depth.
490   LOG(isolate(), IntEvent("check-maps-depth", depth + 1));
491
492   if (depth != 0 || check == CHECK_ALL_MAPS) {
493     // Check the holder map.
494     __ ld(scratch1, FieldMemOperand(reg, HeapObject::kMapOffset));
495     Handle<WeakCell> cell = Map::WeakCellForMap(current_map);
496     __ GetWeakValue(scratch2, cell);
497     __ Branch(miss, ne, scratch2, Operand(scratch1));
498   }
499
500   // Return the register containing the holder.
501   return reg;
502 }
503
504
505 void NamedLoadHandlerCompiler::FrontendFooter(Handle<Name> name, Label* miss) {
506   if (!miss->is_unused()) {
507     Label success;
508     __ Branch(&success);
509     __ bind(miss);
510     if (IC::ICUseVector(kind())) {
511       DCHECK(kind() == Code::LOAD_IC);
512       PopVectorAndSlot();
513     }
514     TailCallBuiltin(masm(), MissBuiltin(kind()));
515     __ bind(&success);
516   }
517 }
518
519
520 void NamedStoreHandlerCompiler::FrontendFooter(Handle<Name> name, Label* miss) {
521   if (!miss->is_unused()) {
522     Label success;
523     __ Branch(&success);
524     GenerateRestoreName(miss, name);
525     TailCallBuiltin(masm(), MissBuiltin(kind()));
526     __ bind(&success);
527   }
528 }
529
530
531 void NamedLoadHandlerCompiler::GenerateLoadConstant(Handle<Object> value) {
532   // Return the constant value.
533   __ li(v0, value);
534   __ Ret();
535 }
536
537
538 void NamedLoadHandlerCompiler::GenerateLoadCallback(
539     Register reg, Handle<ExecutableAccessorInfo> callback) {
540   // Build AccessorInfo::args_ list on the stack and push property name below
541   // the exit frame to make GC aware of them and store pointers to them.
542   STATIC_ASSERT(PropertyCallbackArguments::kHolderIndex == 0);
543   STATIC_ASSERT(PropertyCallbackArguments::kIsolateIndex == 1);
544   STATIC_ASSERT(PropertyCallbackArguments::kReturnValueDefaultValueIndex == 2);
545   STATIC_ASSERT(PropertyCallbackArguments::kReturnValueOffset == 3);
546   STATIC_ASSERT(PropertyCallbackArguments::kDataIndex == 4);
547   STATIC_ASSERT(PropertyCallbackArguments::kThisIndex == 5);
548   STATIC_ASSERT(PropertyCallbackArguments::kArgsLength == 6);
549   DCHECK(!scratch2().is(reg));
550   DCHECK(!scratch3().is(reg));
551   DCHECK(!scratch4().is(reg));
552   __ push(receiver());
553   Handle<Object> data(callback->data(), isolate());
554   if (data->IsUndefined() || data->IsSmi()) {
555     __ li(scratch3(), data);
556   } else {
557     Handle<WeakCell> cell =
558         isolate()->factory()->NewWeakCell(Handle<HeapObject>::cast(data));
559     // The callback is alive if this instruction is executed,
560     // so the weak cell is not cleared and points to data.
561     __ GetWeakValue(scratch3(), cell);
562   }
563   __ Dsubu(sp, sp, 6 * kPointerSize);
564   __ sd(scratch3(), MemOperand(sp, 5 * kPointerSize));
565   __ LoadRoot(scratch3(), Heap::kUndefinedValueRootIndex);
566   __ sd(scratch3(), MemOperand(sp, 4 * kPointerSize));
567   __ sd(scratch3(), MemOperand(sp, 3 * kPointerSize));
568   __ li(scratch4(), Operand(ExternalReference::isolate_address(isolate())));
569   __ sd(scratch4(), MemOperand(sp, 2 * kPointerSize));
570   __ sd(reg, MemOperand(sp, 1 * kPointerSize));
571   __ sd(name(), MemOperand(sp, 0 * kPointerSize));
572   __ Daddu(scratch2(), sp, 1 * kPointerSize);
573
574   __ mov(a2, scratch2());  // Saved in case scratch2 == a1.
575   // Abi for CallApiGetter.
576   Register getter_address_reg = ApiGetterDescriptor::function_address();
577
578   Address getter_address = v8::ToCData<Address>(callback->getter());
579   ApiFunction fun(getter_address);
580   ExternalReference::Type type = ExternalReference::DIRECT_GETTER_CALL;
581   ExternalReference ref = ExternalReference(&fun, type, isolate());
582   __ li(getter_address_reg, Operand(ref));
583
584   CallApiGetterStub stub(isolate());
585   __ TailCallStub(&stub);
586 }
587
588
589 void NamedLoadHandlerCompiler::GenerateLoadInterceptorWithFollowup(
590     LookupIterator* it, Register holder_reg) {
591   DCHECK(holder()->HasNamedInterceptor());
592   DCHECK(!holder()->GetNamedInterceptor()->getter()->IsUndefined());
593
594   // Compile the interceptor call, followed by inline code to load the
595   // property from further up the prototype chain if the call fails.
596   // Check that the maps haven't changed.
597   DCHECK(holder_reg.is(receiver()) || holder_reg.is(scratch1()));
598
599   // Preserve the receiver register explicitly whenever it is different from the
600   // holder and it is needed should the interceptor return without any result.
601   // The ACCESSOR case needs the receiver to be passed into C++ code, the FIELD
602   // case might cause a miss during the prototype check.
603   bool must_perform_prototype_check =
604       !holder().is_identical_to(it->GetHolder<JSObject>());
605   bool must_preserve_receiver_reg =
606       !receiver().is(holder_reg) &&
607       (it->state() == LookupIterator::ACCESSOR || must_perform_prototype_check);
608
609   // Save necessary data before invoking an interceptor.
610   // Requires a frame to make GC aware of pushed pointers.
611   {
612     FrameScope frame_scope(masm(), StackFrame::INTERNAL);
613     if (must_preserve_receiver_reg) {
614       __ Push(receiver(), holder_reg, this->name());
615     } else {
616       __ Push(holder_reg, this->name());
617     }
618     InterceptorVectorSlotPush(holder_reg);
619     // Invoke an interceptor.  Note: map checks from receiver to
620     // interceptor's holder has been compiled before (see a caller
621     // of this method).
622     CompileCallLoadPropertyWithInterceptor(
623         masm(), receiver(), holder_reg, this->name(), holder(),
624         IC::kLoadPropertyWithInterceptorOnly);
625
626     // Check if interceptor provided a value for property.  If it's
627     // the case, return immediately.
628     Label interceptor_failed;
629     __ LoadRoot(scratch1(), Heap::kNoInterceptorResultSentinelRootIndex);
630     __ Branch(&interceptor_failed, eq, v0, Operand(scratch1()));
631     frame_scope.GenerateLeaveFrame();
632     __ Ret();
633
634     __ bind(&interceptor_failed);
635     InterceptorVectorSlotPop(holder_reg);
636     if (must_preserve_receiver_reg) {
637       __ Pop(receiver(), holder_reg, this->name());
638     } else {
639       __ Pop(holder_reg, this->name());
640     }
641     // Leave the internal frame.
642   }
643
644   GenerateLoadPostInterceptor(it, holder_reg);
645 }
646
647
648 void NamedLoadHandlerCompiler::GenerateLoadInterceptor(Register holder_reg) {
649   // Call the runtime system to load the interceptor.
650   DCHECK(holder()->HasNamedInterceptor());
651   DCHECK(!holder()->GetNamedInterceptor()->getter()->IsUndefined());
652   PushInterceptorArguments(masm(), receiver(), holder_reg, this->name(),
653                            holder());
654
655   ExternalReference ref = ExternalReference(
656       IC_Utility(IC::kLoadPropertyWithInterceptor), isolate());
657   __ TailCallExternalReference(
658       ref, NamedLoadHandlerCompiler::kInterceptorArgsLength, 1);
659 }
660
661
662 Handle<Code> NamedStoreHandlerCompiler::CompileStoreCallback(
663     Handle<JSObject> object, Handle<Name> name,
664     Handle<ExecutableAccessorInfo> callback) {
665   Register holder_reg = Frontend(name);
666
667   __ Push(receiver(), holder_reg);  // Receiver.
668   // If the callback cannot leak, then push the callback directly,
669   // otherwise wrap it in a weak cell.
670   if (callback->data()->IsUndefined() || callback->data()->IsSmi()) {
671     __ li(at, Operand(callback));
672   } else {
673     Handle<WeakCell> cell = isolate()->factory()->NewWeakCell(callback);
674     __ li(at, Operand(cell));
675   }
676   __ push(at);
677   __ li(at, Operand(name));
678   __ Push(at, value());
679
680   // Do tail-call to the runtime system.
681   ExternalReference store_callback_property =
682       ExternalReference(IC_Utility(IC::kStoreCallbackProperty), isolate());
683   __ TailCallExternalReference(store_callback_property, 5, 1);
684
685   // Return the generated code.
686   return GetCode(kind(), Code::FAST, name);
687 }
688
689
690 Handle<Code> NamedStoreHandlerCompiler::CompileStoreInterceptor(
691     Handle<Name> name) {
692   __ Push(receiver(), this->name(), value());
693
694   // Do tail-call to the runtime system.
695   ExternalReference store_ic_property = ExternalReference(
696       IC_Utility(IC::kStorePropertyWithInterceptor), isolate());
697   __ TailCallExternalReference(store_ic_property, 3, 1);
698
699   // Return the generated code.
700   return GetCode(kind(), Code::FAST, name);
701 }
702
703
704 Register NamedStoreHandlerCompiler::value() {
705   return StoreDescriptor::ValueRegister();
706 }
707
708
709 Handle<Code> NamedLoadHandlerCompiler::CompileLoadGlobal(
710     Handle<PropertyCell> cell, Handle<Name> name, bool is_configurable) {
711   Label miss;
712   if (IC::ICUseVector(kind())) {
713     PushVectorAndSlot();
714   }
715
716   FrontendHeader(receiver(), name, &miss);
717
718   // Get the value from the cell.
719   Register result = StoreDescriptor::ValueRegister();
720   Handle<WeakCell> weak_cell = factory()->NewWeakCell(cell);
721   __ LoadWeakValue(result, weak_cell, &miss);
722   __ ld(result, FieldMemOperand(result, PropertyCell::kValueOffset));
723
724   // Check for deleted property if property can actually be deleted.
725   if (is_configurable) {
726     __ LoadRoot(at, Heap::kTheHoleValueRootIndex);
727     __ Branch(&miss, eq, result, Operand(at));
728   }
729
730   Counters* counters = isolate()->counters();
731   __ IncrementCounter(counters->named_load_global_stub(), 1, a1, a3);
732   if (IC::ICUseVector(kind())) {
733     DiscardVectorAndSlot();
734   }
735   __ Ret(USE_DELAY_SLOT);
736   __ mov(v0, result);
737
738   FrontendFooter(name, &miss);
739
740   // Return the generated code.
741   return GetCode(kind(), Code::NORMAL, name);
742 }
743
744
745 #undef __
746 }
747 }  // namespace v8::internal
748
749 #endif  // V8_TARGET_ARCH_MIPS64