ic-ia32.cc 31.1 KB
Newer Older
1
// Copyright 2012 the V8 project authors. All rights reserved.
2 3
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
4

5
#if V8_TARGET_ARCH_IA32
6

7
#include "src/codegen.h"
8
#include "src/ic/ic.h"
9
#include "src/ic/ic-compiler.h"
10
#include "src/ic/stub-cache.h"
11

12 13
namespace v8 {
namespace internal {
14 15 16 17 18

// ----------------------------------------------------------------------------
// Static IC stub generators.
//

19
#define __ ACCESS_MASM(masm)
20 21


22
static void GenerateGlobalInstanceTypeCheck(MacroAssembler* masm, Register type,
23 24 25 26
                                            Label* global_object) {
  // Register usage:
  //   type: holds the receiver instance type on entry.
  __ cmp(type, JS_GLOBAL_OBJECT_TYPE);
27
  __ j(equal, global_object);
28
  __ cmp(type, JS_GLOBAL_PROXY_TYPE);
29
  __ j(equal, global_object);
30 31 32
}


33 34 35 36
// Helper function used to load a property from a dictionary backing
// storage. This function may fail to load a property even though it is
// in the dictionary, so code at miss_label must always call a backup
// property load that is complete. This function is safe to call if
37
// name is not internalized, and will jump to the miss_label in that
38 39
// case. The generated code assumes that the receiver has slow
// properties, is not a global object and does not have interceptors.
40 41 42
static void GenerateDictionaryLoad(MacroAssembler* masm, Label* miss_label,
                                   Register elements, Register name,
                                   Register r0, Register r1, Register result) {
43 44 45 46 47 48 49 50 51 52 53 54 55
  // Register use:
  //
  // elements - holds the property dictionary on entry and is unchanged.
  //
  // name - holds the name of the property on entry and is unchanged.
  //
  // Scratch registers:
  //
  // r0   - used for the index into the property dictionary
  //
  // r1   - used to hold the capacity of the property dictionary.
  //
  // result - holds the result on exit.
56

57 58 59
  Label done;

  // Probe the dictionary.
60 61
  NameDictionaryLookupStub::GeneratePositiveLookup(masm, miss_label, &done,
                                                   elements, name, r0, r1);
62 63 64 65

  // If probing finds an entry in the dictionary, r0 contains the
  // index into the dictionary. Check that the value is a normal
  // property.
66
  __ bind(&done);
67
  const int kElementsStartOffset =
68 69
      NameDictionary::kHeaderSize +
      NameDictionary::kElementsStartIndex * kPointerSize;
70
  const int kDetailsOffset = kElementsStartOffset + 2 * kPointerSize;
71
  __ test(Operand(elements, r0, times_4, kDetailsOffset - kHeapObjectTag),
72
          Immediate(PropertyDetails::TypeField::kMask << kSmiTagSize));
73
  __ j(not_zero, miss_label);
74 75 76

  // Get the value at the masked, scaled index.
  const int kValueOffset = kElementsStartOffset + kPointerSize;
77
  __ mov(result, Operand(elements, r0, times_4, kValueOffset - kHeapObjectTag));
78 79 80
}


81 82 83 84
// Helper function used to store a property to a dictionary backing
// storage. This function may fail to store a property eventhough it
// is in the dictionary, so code at miss_label must always call a
// backup property store that is complete. This function is safe to
85
// call if name is not internalized, and will jump to the miss_label in
86 87
// that case. The generated code assumes that the receiver has slow
// properties, is not a global object and does not have interceptors.
88 89 90
static void GenerateDictionaryStore(MacroAssembler* masm, Label* miss_label,
                                    Register elements, Register name,
                                    Register value, Register r0, Register r1) {
91 92 93 94 95 96 97 98 99 100 101 102 103 104 105
  // Register use:
  //
  // elements - holds the property dictionary on entry and is clobbered.
  //
  // name - holds the name of the property on entry and is unchanged.
  //
  // value - holds the value to store and is unchanged.
  //
  // r0 - used for index into the property dictionary and is clobbered.
  //
  // r1 - used to hold the capacity of the property dictionary and is clobbered.
  Label done;


  // Probe the dictionary.
106 107
  NameDictionaryLookupStub::GeneratePositiveLookup(masm, miss_label, &done,
                                                   elements, name, r0, r1);
108 109 110 111 112 113

  // If probing finds an entry in the dictionary, r0 contains the
  // index into the dictionary. Check that the value is a normal
  // property that is not read only.
  __ bind(&done);
  const int kElementsStartOffset =
114 115
      NameDictionary::kHeaderSize +
      NameDictionary::kElementsStartIndex * kPointerSize;
116
  const int kDetailsOffset = kElementsStartOffset + 2 * kPointerSize;
117 118
  const int kTypeAndReadOnlyMask =
      (PropertyDetails::TypeField::kMask |
119 120
       PropertyDetails::AttributesField::encode(READ_ONLY))
      << kSmiTagSize;
121 122
  __ test(Operand(elements, r0, times_4, kDetailsOffset - kHeapObjectTag),
          Immediate(kTypeAndReadOnlyMask));
123
  __ j(not_zero, miss_label);
124 125 126 127 128 129 130 131

  // Store the value at the masked, scaled index.
  const int kValueOffset = kElementsStartOffset + kPointerSize;
  __ lea(r0, Operand(elements, r0, times_4, kValueOffset - kHeapObjectTag));
  __ mov(Operand(r0, 0), value);

  // Update write barrier. Make sure not to clobber the value.
  __ mov(r1, value);
132
  __ RecordWrite(elements, r0, r1, kDontSaveFPRegs);
133 134 135
}


136 137 138
// Checks the receiver for special cases (value type, slow case bits).
// Falls through for regular JS object.
static void GenerateKeyedLoadReceiverCheck(MacroAssembler* masm,
139 140
                                           Register receiver, Register map,
                                           int interceptor_bit, Label* slow) {
141 142 143
  // Register use:
  //   receiver - holds the receiver and is unchanged.
  // Scratch registers:
144
  //   map - used to hold the map of the receiver.
145 146

  // Check that the object isn't a smi.
147
  __ JumpIfSmi(receiver, slow);
148 149

  // Get the map of the receiver.
150
  __ mov(map, FieldOperand(receiver, HeapObject::kMapOffset));
151 152

  // Check bit field.
153 154 155
  __ test_b(
      FieldOperand(map, Map::kBitFieldOffset),
      Immediate((1 << Map::kIsAccessCheckNeeded) | (1 << interceptor_bit)));
156
  __ j(not_zero, slow);
157 158 159
  // Check that the object is some kind of JS object EXCEPT JS Value type. In
  // the case that the object is a value-wrapper object, we enter the runtime
  // system to make sure that indexing into string objects works as intended.
160
  DCHECK(JS_OBJECT_TYPE > JS_VALUE_TYPE);
161

162
  __ CmpInstanceType(map, JS_OBJECT_TYPE);
163
  __ j(below, slow);
164 165 166 167
}


// Loads an indexed element from a fast case array.
168 169
static void GenerateFastArrayLoad(MacroAssembler* masm, Register receiver,
                                  Register key, Register scratch,
170
                                  Register scratch2, Register result,
171
                                  Label* slow) {
172 173 174 175 176
  // Register use:
  //   receiver - holds the receiver and is unchanged.
  //   key - holds the key and is unchanged (must be a smi).
  // Scratch registers:
  //   scratch - used to hold elements of the receiver and the loaded value.
177
  //   scratch2 - holds maps and prototypes during prototype chain check.
178 179
  //   result - holds the result on exit if the load succeeds and
  //            we fall through.
180
  Label check_prototypes, check_next_prototype;
181
  Label done, in_bounds, absent;
182 183

  __ mov(scratch, FieldOperand(receiver, JSObject::kElementsOffset));
184 185
  __ AssertFastElements(scratch);

186
  // Check that the key (index) is within bounds.
187
  __ cmp(key, FieldOperand(scratch, FixedArray::kLengthOffset));
188 189 190 191 192 193 194 195 196 197 198
  __ j(below, &in_bounds);
  // Out-of-bounds. Check the prototype chain to see if we can just return
  // 'undefined'.
  __ cmp(key, 0);
  __ j(less, slow);  // Negative keys can't take the fast OOB path.
  __ bind(&check_prototypes);
  __ mov(scratch2, FieldOperand(receiver, HeapObject::kMapOffset));
  __ bind(&check_next_prototype);
  __ mov(scratch2, FieldOperand(scratch2, Map::kPrototypeOffset));
  // scratch2: current prototype
  __ cmp(scratch2, masm->isolate()->factory()->null_value());
199
  __ j(equal, &absent);
200 201 202 203 204 205
  __ mov(scratch, FieldOperand(scratch2, JSObject::kElementsOffset));
  __ mov(scratch2, FieldOperand(scratch2, HeapObject::kMapOffset));
  // scratch: elements of current prototype
  // scratch2: map of current prototype
  __ CmpInstanceType(scratch2, JS_OBJECT_TYPE);
  __ j(below, slow);
206 207 208
  __ test_b(FieldOperand(scratch2, Map::kBitFieldOffset),
            Immediate((1 << Map::kIsAccessCheckNeeded) |
                      (1 << Map::kHasIndexedInterceptor)));
209 210 211 212 213
  __ j(not_zero, slow);
  __ cmp(scratch, masm->isolate()->factory()->empty_fixed_array());
  __ j(not_equal, slow);
  __ jmp(&check_next_prototype);

214
  __ bind(&absent);
215 216
  __ mov(result, masm->isolate()->factory()->undefined_value());
  __ jmp(&done);
217 218

  __ bind(&in_bounds);
219
  // Fast case: Do the load.
220
  STATIC_ASSERT((kPointerSize == 4) && (kSmiTagSize == 1) && (kSmiTag == 0));
221
  __ mov(scratch, FieldOperand(scratch, key, times_2, FixedArray::kHeaderSize));
222
  __ cmp(scratch, Immediate(masm->isolate()->factory()->the_hole_value()));
223 224 225 226
  // In case the loaded value is the_hole we have to check the prototype chain.
  __ j(equal, &check_prototypes);
  __ Move(result, scratch);
  __ bind(&done);
227 228 229
}


230 231
// Checks whether a key is an array index string or a unique name.
// Falls through if the key is a unique name.
232 233 234
static void GenerateKeyNameCheck(MacroAssembler* masm, Register key,
                                 Register map, Register hash,
                                 Label* index_string, Label* not_unique) {
235 236 237 238 239
  // Register use:
  //   key - holds the key and is unchanged. Assumed to be non-smi.
  // Scratch registers:
  //   map - used to hold the map of the key.
  //   hash - used to hold the hash of the key.
240 241 242 243 244
  Label unique;
  __ CmpObjectType(key, LAST_UNIQUE_NAME_TYPE, map);
  __ j(above, not_unique);
  STATIC_ASSERT(LAST_UNIQUE_NAME_TYPE == FIRST_NONSTRING_TYPE);
  __ j(equal, &unique);
245 246

  // Is the string an array index, with cached numeric value?
247 248
  __ mov(hash, FieldOperand(key, Name::kHashFieldOffset));
  __ test(hash, Immediate(Name::kContainsCachedArrayIndexMask));
249
  __ j(zero, index_string);
250

251 252
  // Is the string internalized? We already know it's a string so a single
  // bit test is enough.
253 254
  STATIC_ASSERT(kNotInternalizedTag != 0);
  __ test_b(FieldOperand(map, Map::kInstanceTypeOffset),
255
            Immediate(kIsNotInternalizedMask));
256
  __ j(not_zero, not_unique);
257 258

  __ bind(&unique);
259 260
}

261
void KeyedLoadIC::GenerateMegamorphic(MacroAssembler* masm) {
262
  // The return address is on the stack.
263
  Label slow, check_name, index_smi, index_name, property_array_property;
264
  Label probe_dictionary, check_number_dictionary;
265

266 267
  Register receiver = LoadDescriptor::ReceiverRegister();
  Register key = LoadDescriptor::NameRegister();
268 269
  DCHECK(receiver.is(edx));
  DCHECK(key.is(ecx));
270

271
  // Check that the key is a smi.
272
  __ JumpIfNotSmi(key, &check_name);
273 274 275 276
  __ bind(&index_smi);
  // Now the key is known to be a smi. This place is also jumped to from
  // where a numeric string is converted to a smi.

277 278
  GenerateKeyedLoadReceiverCheck(masm, receiver, eax,
                                 Map::kHasIndexedInterceptor, &slow);
279

280
  // Check the receiver's map to see if it has fast elements.
281 282
  __ CheckFastElements(eax, &check_number_dictionary);

283
  GenerateFastArrayLoad(masm, receiver, key, eax, ebx, eax, &slow);
284 285
  Isolate* isolate = masm->isolate();
  Counters* counters = isolate->counters();
cbruni's avatar
cbruni committed
286
  __ IncrementCounter(counters->ic_keyed_load_generic_smi(), 1);
287
  __ ret(0);
288

289
  __ bind(&check_number_dictionary);
290
  __ mov(ebx, key);
291
  __ SmiUntag(ebx);
292
  __ mov(eax, FieldOperand(receiver, JSObject::kElementsOffset));
293

294 295
  // Check whether the elements is a number dictionary.
  // ebx: untagged index
296
  // eax: elements
297
  __ CheckMap(eax, isolate->factory()->hash_table_map(), &slow,
298
              DONT_DO_SMI_CHECK);
299 300 301
  Label slow_pop_receiver;
  // Push receiver on the stack to free up a register for the dictionary
  // probing.
302 303
  __ push(receiver);
  __ LoadFromNumberDictionary(&slow_pop_receiver, eax, key, ebx, edx, edi, eax);
304
  // Pop receiver before returning.
305
  __ pop(receiver);
306 307 308 309
  __ ret(0);

  __ bind(&slow_pop_receiver);
  // Pop the receiver from the stack and jump to runtime.
310
  __ pop(receiver);
311

312
  __ bind(&slow);
313
  // Slow case: jump to runtime.
cbruni's avatar
cbruni committed
314
  __ IncrementCounter(counters->ic_keyed_load_generic_slow(), 1);
315
  GenerateRuntimeGetProperty(masm);
316

317
  __ bind(&check_name);
318
  GenerateKeyNameCheck(masm, key, eax, ebx, &index_name, &slow);
319

320 321
  GenerateKeyedLoadReceiverCheck(masm, receiver, eax, Map::kHasNamedInterceptor,
                                 &slow);
322

323 324
  // If the receiver is a fast-case object, check the stub cache. Otherwise
  // probe the dictionary.
325
  __ mov(ebx, FieldOperand(receiver, JSObject::kPropertiesOffset));
326
  __ cmp(FieldOperand(ebx, HeapObject::kMapOffset),
327
         Immediate(isolate->factory()->hash_table_map()));
328 329
  __ j(equal, &probe_dictionary);

330 331
  // The handlers in the stub cache expect a vector and slot. Since we won't
  // change the IC from any downstream misses, a dummy vector can be used.
332 333 334
  Handle<TypeFeedbackVector> dummy_vector =
      TypeFeedbackVector::DummyVector(isolate);
  int slot = dummy_vector->GetIndex(
335
      FeedbackVectorSlot(TypeFeedbackVector::kDummyKeyedLoadICSlot));
336 337
  __ push(Immediate(Smi::FromInt(slot)));
  __ push(Immediate(dummy_vector));
338

339 340
  masm->isolate()->load_stub_cache()->GenerateProbe(masm, receiver, key, ebx,
                                                    edi);
341

342 343
  __ pop(LoadWithVectorDescriptor::VectorRegister());
  __ pop(LoadDescriptor::SlotRegister());
344

345 346
  // Cache miss.
  GenerateMiss(masm);
347

348 349 350
  // Do a quick inline probe of the receiver's dictionary, if it
  // exists.
  __ bind(&probe_dictionary);
351

352
  __ mov(eax, FieldOperand(receiver, JSObject::kMapOffset));
353 354
  __ movzx_b(eax, FieldOperand(eax, Map::kInstanceTypeOffset));
  GenerateGlobalInstanceTypeCheck(masm, eax, &slow);
355

356
  GenerateDictionaryLoad(masm, &slow, ebx, key, eax, edi, eax);
cbruni's avatar
cbruni committed
357
  __ IncrementCounter(counters->ic_keyed_load_generic_symbol(), 1);
358
  __ ret(0);
359

360
  __ bind(&index_name);
361
  __ IndexFromHash(ebx, key);
362 363
  // Now jump to the place where smi keys are handled.
  __ jmp(&index_smi);
364 365 366
}


367
static void KeyedStoreGenerateMegamorphicHelper(
368 369
    MacroAssembler* masm, Label* fast_object, Label* fast_double, Label* slow,
    KeyedStoreCheckMap check_map, KeyedStoreIncrementLength increment_length) {
370 371 372
  Label transition_smi_elements;
  Label finish_object_store, non_double_value, transition_double_elements;
  Label fast_double_without_map_check;
373 374 375
  Register receiver = StoreDescriptor::ReceiverRegister();
  Register key = StoreDescriptor::NameRegister();
  Register value = StoreDescriptor::ValueRegister();
376 377 378
  DCHECK(receiver.is(edx));
  DCHECK(key.is(ecx));
  DCHECK(value.is(eax));
379
  // key is a smi.
380 381 382 383
  // ebx: FixedArray receiver->elements
  // edi: receiver map
  // Fast case: Do the store, could either Object or double.
  __ bind(fast_object);
384
  if (check_map == kCheckMap) {
385 386 387 388
    __ mov(edi, FieldOperand(ebx, HeapObject::kMapOffset));
    __ cmp(edi, masm->isolate()->factory()->fixed_array_map());
    __ j(not_equal, fast_double);
  }
389 390 391 392 393

  // HOLECHECK: guards "A[i] = V"
  // We have to go to the runtime if the current value is the hole because
  // there may be a callback on the element
  Label holecheck_passed1;
394
  __ cmp(FixedArrayElementOperand(ebx, key),
395 396
         masm->isolate()->factory()->the_hole_value());
  __ j(not_equal, &holecheck_passed1);
397 398
  __ JumpIfDictionaryInPrototypeChain(receiver, ebx, edi, slow);
  __ mov(ebx, FieldOperand(receiver, JSObject::kElementsOffset));
399 400 401

  __ bind(&holecheck_passed1);

402 403
  // Smi stores don't require further checks.
  Label non_smi_value;
404
  __ JumpIfNotSmi(value, &non_smi_value);
405
  if (increment_length == kIncrementLength) {
406
    // Add 1 to receiver->length.
407
    __ add(FieldOperand(receiver, JSArray::kLengthOffset),
408 409 410
           Immediate(Smi::FromInt(1)));
  }
  // It's irrelevant whether array is smi-only or not when writing a smi.
411
  __ mov(FixedArrayElementOperand(ebx, key), value);
412 413 414 415
  __ ret(0);

  __ bind(&non_smi_value);
  // Escape to elements kind transition case.
416
  __ mov(edi, FieldOperand(receiver, HeapObject::kMapOffset));
417 418 419 420
  __ CheckFastObjectElements(edi, &transition_smi_elements);

  // Fast elements array, store the value to the elements backing store.
  __ bind(&finish_object_store);
421
  if (increment_length == kIncrementLength) {
422
    // Add 1 to receiver->length.
423
    __ add(FieldOperand(receiver, JSArray::kLengthOffset),
424 425
           Immediate(Smi::FromInt(1)));
  }
426
  __ mov(FixedArrayElementOperand(ebx, key), value);
427
  // Update write barrier for the elements array address.
428
  __ mov(edx, value);  // Preserve the value which is returned.
429 430
  __ RecordWriteArray(ebx, edx, key, kDontSaveFPRegs, EMIT_REMEMBERED_SET,
                      OMIT_SMI_CHECK);
431 432 433
  __ ret(0);

  __ bind(fast_double);
434
  if (check_map == kCheckMap) {
435 436 437 438 439 440 441
    // Check for fast double array case. If this fails, call through to the
    // runtime.
    __ cmp(edi, masm->isolate()->factory()->fixed_double_array_map());
    __ j(not_equal, slow);
    // If the value is a number, store it as a double in the FastDoubleElements
    // array.
  }
442 443 444 445 446

  // HOLECHECK: guards "A[i] double hole?"
  // We have to see if the double version of the hole is present. If so
  // go to the runtime.
  uint32_t offset = FixedDoubleArray::kHeaderSize + sizeof(kHoleNanLower32);
447
  __ cmp(FieldOperand(ebx, key, times_4, offset), Immediate(kHoleNanUpper32));
448
  __ j(not_equal, &fast_double_without_map_check);
449 450
  __ JumpIfDictionaryInPrototypeChain(receiver, ebx, edi, slow);
  __ mov(ebx, FieldOperand(receiver, JSObject::kElementsOffset));
451

452
  __ bind(&fast_double_without_map_check);
453
  __ StoreNumberToDoubleElements(value, ebx, key, edi, xmm0,
454
                                 &transition_double_elements);
455
  if (increment_length == kIncrementLength) {
456
    // Add 1 to receiver->length.
457
    __ add(FieldOperand(receiver, JSArray::kLengthOffset),
458 459 460 461 462
           Immediate(Smi::FromInt(1)));
  }
  __ ret(0);

  __ bind(&transition_smi_elements);
463
  __ mov(ebx, FieldOperand(receiver, HeapObject::kMapOffset));
464 465

  // Transition the array appropriately depending on the value type.
466 467
  __ CheckMap(value, masm->isolate()->factory()->heap_number_map(),
              &non_double_value, DONT_DO_SMI_CHECK);
468 469 470 471

  // Value is a double. Transition FAST_SMI_ELEMENTS -> FAST_DOUBLE_ELEMENTS
  // and complete the store.
  __ LoadTransitionedArrayMapConditional(FAST_SMI_ELEMENTS,
472 473 474 475 476
                                         FAST_DOUBLE_ELEMENTS, ebx, edi, slow);
  AllocationSiteMode mode =
      AllocationSite::GetMode(FAST_SMI_ELEMENTS, FAST_DOUBLE_ELEMENTS);
  ElementsTransitionGenerator::GenerateSmiToDouble(masm, receiver, key, value,
                                                   ebx, mode, slow);
477
  __ mov(ebx, FieldOperand(receiver, JSObject::kElementsOffset));
478 479 480 481
  __ jmp(&fast_double_without_map_check);

  __ bind(&non_double_value);
  // Value is not a double, FAST_SMI_ELEMENTS -> FAST_ELEMENTS
482 483
  __ LoadTransitionedArrayMapConditional(FAST_SMI_ELEMENTS, FAST_ELEMENTS, ebx,
                                         edi, slow);
484
  mode = AllocationSite::GetMode(FAST_SMI_ELEMENTS, FAST_ELEMENTS);
485 486
  ElementsTransitionGenerator::GenerateMapChangeElementsTransition(
      masm, receiver, key, value, ebx, mode, slow);
487
  __ mov(ebx, FieldOperand(receiver, JSObject::kElementsOffset));
488 489 490 491 492 493
  __ jmp(&finish_object_store);

  __ bind(&transition_double_elements);
  // Elements are FAST_DOUBLE_ELEMENTS, but value is an Object that's not a
  // HeapNumber. Make sure that the receiver is a Array with FAST_ELEMENTS and
  // transition array from FAST_DOUBLE_ELEMENTS to FAST_ELEMENTS
494
  __ mov(ebx, FieldOperand(receiver, HeapObject::kMapOffset));
495 496
  __ LoadTransitionedArrayMapConditional(FAST_DOUBLE_ELEMENTS, FAST_ELEMENTS,
                                         ebx, edi, slow);
497
  mode = AllocationSite::GetMode(FAST_DOUBLE_ELEMENTS, FAST_ELEMENTS);
498 499
  ElementsTransitionGenerator::GenerateDoubleToObject(masm, receiver, key,
                                                      value, ebx, mode, slow);
500
  __ mov(ebx, FieldOperand(receiver, JSObject::kElementsOffset));
501 502 503 504
  __ jmp(&finish_object_store);
}


505
void KeyedStoreIC::GenerateMegamorphic(MacroAssembler* masm,
506
                                       LanguageMode language_mode) {
507
  // Return address is on the stack.
508 509
  Label slow, fast_object, fast_object_grow;
  Label fast_double, fast_double_grow;
510
  Label array, extra, check_if_double_array, maybe_name_key, miss;
511 512
  Register receiver = StoreDescriptor::ReceiverRegister();
  Register key = StoreDescriptor::NameRegister();
513 514
  DCHECK(receiver.is(edx));
  DCHECK(key.is(ecx));
515

516
  // Check that the object isn't a smi.
517
  __ JumpIfSmi(receiver, &slow);
518
  // Get the map from the receiver.
519
  __ mov(edi, FieldOperand(receiver, HeapObject::kMapOffset));
520 521
  // Check that the receiver does not require access checks.
  // The generic stub does not perform map checks.
522
  __ test_b(FieldOperand(edi, Map::kBitFieldOffset),
523
            Immediate(1 << Map::kIsAccessCheckNeeded));
524
  __ j(not_zero, &slow);
525
  // Check that the key is a smi.
526
  __ JumpIfNotSmi(key, &maybe_name_key);
527
  __ CmpInstanceType(edi, JS_ARRAY_TYPE);
528
  __ j(equal, &array);
529 530 531 532 533
  // Check that the object is some kind of JS object EXCEPT JS Value type. In
  // the case that the object is a value-wrapper object, we enter the runtime
  // system to make sure that indexing into string objects works as intended.
  STATIC_ASSERT(JS_VALUE_TYPE < JS_OBJECT_TYPE);
  __ CmpInstanceType(edi, JS_OBJECT_TYPE);
534
  __ j(below, &slow);
535 536

  // Object case: Check key against length in the elements array.
537
  // Key is a smi.
538
  // edi: receiver map
539
  __ mov(ebx, FieldOperand(receiver, JSObject::kElementsOffset));
540
  // Check array bounds. Both the key and the length of FixedArray are smis.
541
  __ cmp(key, FieldOperand(ebx, FixedArray::kLengthOffset));
542
  __ j(below, &fast_object);
543

544
  // Slow case: call runtime.
545
  __ bind(&slow);
546
  PropertyICCompiler::GenerateRuntimeSetProperty(masm, language_mode);
547 548 549 550 551 552
  // Never returns to here.

  __ bind(&maybe_name_key);
  __ mov(ebx, FieldOperand(key, HeapObject::kMapOffset));
  __ movzx_b(ebx, FieldOperand(ebx, Map::kInstanceTypeOffset));
  __ JumpIfNotUniqueNameInstanceType(ebx, &slow);
553 554


555 556 557 558 559 560 561 562
  // The handlers in the stub cache expect a vector and slot. Since we won't
  // change the IC from any downstream misses, a dummy vector can be used.
  Handle<TypeFeedbackVector> dummy_vector =
      TypeFeedbackVector::DummyVector(masm->isolate());
  int slot = dummy_vector->GetIndex(
      FeedbackVectorSlot(TypeFeedbackVector::kDummyKeyedStoreICSlot));
  __ push(Immediate(Smi::FromInt(slot)));
  __ push(Immediate(dummy_vector));
563

564 565
  masm->isolate()->store_stub_cache()->GenerateProbe(masm, receiver, key, edi,
                                                     no_reg);
566

567 568
  __ pop(StoreWithVectorDescriptor::VectorRegister());
  __ pop(StoreWithVectorDescriptor::SlotRegister());
569

570
  // Cache miss.
571
  __ jmp(&miss);
572 573 574 575 576

  // Extra capacity case: Check if there is extra capacity to
  // perform the store and update the length. Used for adding one
  // element to the array by writing to array[array.length].
  __ bind(&extra);
577 578
  // receiver is a JSArray.
  // key is a smi.
579 580
  // ebx: receiver->elements, a FixedArray
  // edi: receiver map
581
  // flags: compare (key, receiver.length())
582
  // do not leave holes in the array:
583
  __ j(not_equal, &slow);
584
  __ cmp(key, FieldOperand(ebx, FixedArray::kLengthOffset));
585
  __ j(above_equal, &slow);
586 587 588
  __ mov(edi, FieldOperand(ebx, HeapObject::kMapOffset));
  __ cmp(edi, masm->isolate()->factory()->fixed_array_map());
  __ j(not_equal, &check_if_double_array);
589
  __ jmp(&fast_object_grow);
590 591

  __ bind(&check_if_double_array);
592 593
  __ cmp(edi, masm->isolate()->factory()->fixed_double_array_map());
  __ j(not_equal, &slow);
594
  __ jmp(&fast_double_grow);
595 596

  // Array case: Get the length and the elements array from the JS
597 598
  // array. Check that the array is in fast mode (and writable); if it
  // is the length is always a smi.
599
  __ bind(&array);
600 601
  // receiver is a JSArray.
  // key is a smi.
602
  // edi: receiver map
603
  __ mov(ebx, FieldOperand(receiver, JSObject::kElementsOffset));
604

605 606
  // Check the key against the length in the array and fall through to the
  // common store code.
607
  __ cmp(key, FieldOperand(receiver, JSArray::kLengthOffset));  // Compare smis.
608
  __ j(above_equal, &extra);
609

610 611 612 613 614
  KeyedStoreGenerateMegamorphicHelper(masm, &fast_object, &fast_double, &slow,
                                      kCheckMap, kDontIncrementLength);
  KeyedStoreGenerateMegamorphicHelper(masm, &fast_object_grow,
                                      &fast_double_grow, &slow, kDontCheckMap,
                                      kIncrementLength);
615

616 617
  __ bind(&miss);
  GenerateMiss(masm);
618 619
}

620
void LoadIC::GenerateNormal(MacroAssembler* masm) {
621
  Register dictionary = eax;
622 623
  DCHECK(!dictionary.is(LoadDescriptor::ReceiverRegister()));
  DCHECK(!dictionary.is(LoadDescriptor::NameRegister()));
624

625
  Label slow;
626

627
  __ mov(dictionary, FieldOperand(LoadDescriptor::ReceiverRegister(),
628 629
                                  JSObject::kPropertiesOffset));
  GenerateDictionaryLoad(masm, &slow, dictionary,
630
                         LoadDescriptor::NameRegister(), edi, ebx, eax);
631 632
  __ ret(0);

633 634
  // Dictionary load failed, go slow (but don't miss).
  __ bind(&slow);
635
  GenerateRuntimeGetProperty(masm);
636 637 638
}


639
static void LoadIC_PushArgs(MacroAssembler* masm) {
640 641
  Register receiver = LoadDescriptor::ReceiverRegister();
  Register name = LoadDescriptor::NameRegister();
642

643 644
  Register slot = LoadDescriptor::SlotRegister();
  Register vector = LoadWithVectorDescriptor::VectorRegister();
645 646 647 648 649 650 651 652 653
  DCHECK(!edi.is(receiver) && !edi.is(name) && !edi.is(slot) &&
         !edi.is(vector));

  __ pop(edi);
  __ push(receiver);
  __ push(name);
  __ push(slot);
  __ push(vector);
  __ push(edi);
654 655 656
}


657
void LoadIC::GenerateMiss(MacroAssembler* masm) {
658
  // Return address is on the stack.
cbruni's avatar
cbruni committed
659
  __ IncrementCounter(masm->isolate()->counters()->ic_load_miss(), 1);
660
  LoadIC_PushArgs(masm);
661

662
  // Perform tail call to the entry.
663
  __ TailCallRuntime(Runtime::kLoadIC_Miss);
664 665
}

666
void LoadIC::GenerateRuntimeGetProperty(MacroAssembler* masm) {
667
  // Return address is on the stack.
668 669 670 671 672 673 674 675
  Register receiver = LoadDescriptor::ReceiverRegister();
  Register name = LoadDescriptor::NameRegister();
  DCHECK(!ebx.is(receiver) && !ebx.is(name));

  __ pop(ebx);
  __ push(receiver);
  __ push(name);
  __ push(ebx);
676

677
  // Do tail-call to runtime routine.
678
  __ TailCallRuntime(Runtime::kGetProperty);
679 680 681
}


682
void KeyedLoadIC::GenerateMiss(MacroAssembler* masm) {
683
  // Return address is on the stack.
cbruni's avatar
cbruni committed
684
  __ IncrementCounter(masm->isolate()->counters()->ic_keyed_load_miss(), 1);
685

686
  LoadIC_PushArgs(masm);
687 688

  // Perform tail call to the entry.
689
  __ TailCallRuntime(Runtime::kKeyedLoadIC_Miss);
690 691
}

692
void KeyedLoadIC::GenerateRuntimeGetProperty(MacroAssembler* masm) {
693
  // Return address is on the stack.
694 695 696 697 698 699 700 701
  Register receiver = LoadDescriptor::ReceiverRegister();
  Register name = LoadDescriptor::NameRegister();
  DCHECK(!ebx.is(receiver) && !ebx.is(name));

  __ pop(ebx);
  __ push(receiver);
  __ push(name);
  __ push(ebx);
702

703
  // Do tail-call to runtime routine.
704
  __ TailCallRuntime(Runtime::kKeyedGetProperty);
705 706
}

707
static void StoreIC_PushArgs(MacroAssembler* masm) {
708 709 710
  Register receiver = StoreDescriptor::ReceiverRegister();
  Register name = StoreDescriptor::NameRegister();
  Register value = StoreDescriptor::ValueRegister();
711 712
  Register slot = StoreWithVectorDescriptor::SlotRegister();
  Register vector = StoreWithVectorDescriptor::VectorRegister();
713

714 715 716 717 718 719
  __ xchg(receiver, Operand(esp, 0));
  __ push(name);
  __ push(value);
  __ push(slot);
  __ push(vector);
  __ push(receiver);  // Contains the return address.
720 721 722 723 724 725
}


void StoreIC::GenerateMiss(MacroAssembler* masm) {
  // Return address is on the stack.
  StoreIC_PushArgs(masm);
726

727
  // Perform tail call to the entry.
728
  __ TailCallRuntime(Runtime::kStoreIC_Miss);
729 730 731
}


732
void StoreIC::GenerateNormal(MacroAssembler* masm) {
733
  Label restore_miss;
734 735 736
  Register receiver = StoreDescriptor::ReceiverRegister();
  Register name = StoreDescriptor::NameRegister();
  Register value = StoreDescriptor::ValueRegister();
737 738
  Register vector = StoreWithVectorDescriptor::VectorRegister();
  Register slot = StoreWithVectorDescriptor::SlotRegister();
739 740 741 742

  // A lot of registers are needed for storing to slow case
  // objects. Push and restore receiver but rely on
  // GenerateDictionaryStore preserving the value and name.
743
  __ push(receiver);
744 745
  __ push(vector);
  __ push(slot);
746 747 748

  Register dictionary = ebx;
  __ mov(dictionary, FieldOperand(receiver, JSObject::kPropertiesOffset));
749 750
  GenerateDictionaryStore(masm, &restore_miss, dictionary, name, value,
                          receiver, edi);
751
  __ Drop(3);
752
  Counters* counters = masm->isolate()->counters();
cbruni's avatar
cbruni committed
753
  __ IncrementCounter(counters->ic_store_normal_hit(), 1);
754 755 756
  __ ret(0);

  __ bind(&restore_miss);
757 758
  __ pop(slot);
  __ pop(vector);
759
  __ pop(receiver);
cbruni's avatar
cbruni committed
760
  __ IncrementCounter(counters->ic_store_normal_miss(), 1);
761 762 763 764
  GenerateMiss(masm);
}


765
void KeyedStoreIC::GenerateMiss(MacroAssembler* masm) {
766 767
  // Return address is on the stack.
  StoreIC_PushArgs(masm);
768 769

  // Do tail-call to runtime routine.
770
  __ TailCallRuntime(Runtime::kKeyedStoreIC_Miss);
danno@chromium.org's avatar
danno@chromium.org committed
771 772 773
}


774 775 776
#undef __


777 778 779 780 781 782 783 784
Condition CompareIC::ComputeCondition(Token::Value op) {
  switch (op) {
    case Token::EQ_STRICT:
    case Token::EQ:
      return equal;
    case Token::LT:
      return less;
    case Token::GT:
785
      return greater;
786
    case Token::LTE:
787
      return less_equal;
788 789 790 791 792 793 794 795 796
    case Token::GTE:
      return greater_equal;
    default:
      UNREACHABLE();
      return no_condition;
  }
}


797
bool CompareIC::HasInlinedSmiCode(Address address) {
798 799 800 801 802 803 804 805 806 807
  // The address of the instruction following the call.
  Address test_instruction_address =
      address + Assembler::kCallTargetAddressOffset;

  // If the instruction following the call is not a test al, nothing
  // was inlined.
  return *test_instruction_address == Assembler::kTestAlByte;
}


808 809
void PatchInlinedSmiCode(Isolate* isolate, Address address,
                         InlinedSmiCheck check) {
810 811 812 813 814 815 816
  // The address of the instruction following the call.
  Address test_instruction_address =
      address + Assembler::kCallTargetAddressOffset;

  // If the instruction following the call is not a test al, nothing
  // was inlined.
  if (*test_instruction_address != Assembler::kTestAlByte) {
817
    DCHECK(*test_instruction_address == Assembler::kNopByte);
818 819 820 821 822 823
    return;
  }

  Address delta_address = test_instruction_address + 1;
  // The delta to the start of the map check instruction and the
  // condition code uses at the patched jump.
824
  uint8_t delta = *reinterpret_cast<uint8_t*>(delta_address);
825
  if (FLAG_trace_ic) {
826 827 828
    PrintF("[  patching ic at %p, test=%p, delta=%d\n",
           static_cast<void*>(address),
           static_cast<void*>(test_instruction_address), delta);
829 830
  }

831 832 833
  // Patch with a short conditional jump. Enabling means switching from a short
  // jump-if-carry/not-carry to jump-if-zero/not-zero, whereas disabling is the
  // reverse operation of that.
834
  Address jmp_address = test_instruction_address - delta;
835
  DCHECK((check == ENABLE_INLINED_SMI_CHECK)
836 837 838 839 840 841 842 843
             ? (*jmp_address == Assembler::kJncShortOpcode ||
                *jmp_address == Assembler::kJcShortOpcode)
             : (*jmp_address == Assembler::kJnzShortOpcode ||
                *jmp_address == Assembler::kJzShortOpcode));
  Condition cc =
      (check == ENABLE_INLINED_SMI_CHECK)
          ? (*jmp_address == Assembler::kJncShortOpcode ? not_zero : zero)
          : (*jmp_address == Assembler::kJnzShortOpcode ? not_carry : carry);
844
  *jmp_address = static_cast<byte>(Assembler::kJccShortPrefix | cc);
845
}
846 847
}  // namespace internal
}  // namespace v8
848 849

#endif  // V8_TARGET_ARCH_IA32