HomeSort by relevance Sort by last modified time
    Searched refs:current_map (Results 1 - 14 of 14) sorted by null

  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/models/
test_run_results.py 296 current_map = tests
299 current_map[part] = test_dict
301 if part not in current_map:
302 current_map[part] = {}
303 current_map = current_map[part]
  /external/chromium_org/v8/src/ic/arm/
handler-compiler-arm.cc 529 Handle<Map> current_map = receiver_map; local
533 while (!current_map.is_identical_to(holder_map)) {
538 DCHECK(current_map->IsJSGlobalProxyMap() ||
539 !current_map->is_access_check_needed());
541 prototype = handle(JSObject::cast(current_map->prototype()));
542 if (current_map->is_dictionary_map() &&
543 !current_map->IsJSGlobalObjectMap()) {
544 DCHECK(!current_map->IsJSGlobalProxyMap()); // Proxy maps are fast.
563 __ CheckMap(reg, map_reg, current_map, miss, DONT_DO_SMI_CHECK);
574 if (current_map->IsJSGlobalProxyMap())
    [all...]
  /external/chromium_org/v8/src/ic/arm64/
handler-compiler-arm64.cc 565 Handle<Map> current_map = receiver_map; local
569 while (!current_map.is_identical_to(holder_map)) {
574 DCHECK(current_map->IsJSGlobalProxyMap() ||
575 !current_map->is_access_check_needed());
577 prototype = handle(JSObject::cast(current_map->prototype()));
578 if (current_map->is_dictionary_map() &&
579 !current_map->IsJSGlobalObjectMap()) {
580 DCHECK(!current_map->IsJSGlobalProxyMap()); // Proxy maps are fast.
605 __ CheckMap(map_reg, current_map, miss, DONT_DO_SMI_CHECK);
614 if (current_map->IsJSGlobalProxyMap())
    [all...]
  /external/chromium_org/v8/src/ic/ia32/
handler-compiler-ia32.cc 518 Handle<Map> current_map = receiver_map; local
522 while (!current_map.is_identical_to(holder_map)) {
527 DCHECK(current_map->IsJSGlobalProxyMap() ||
528 !current_map->is_access_check_needed());
530 prototype = handle(JSObject::cast(current_map->prototype()));
531 if (current_map->is_dictionary_map() &&
532 !current_map->IsJSGlobalObjectMap()) {
533 DCHECK(!current_map->IsJSGlobalProxyMap()); // Proxy maps are fast.
556 __ CheckMap(reg, current_map, miss, DONT_DO_SMI_CHECK);
565 if (current_map->IsJSGlobalProxyMap())
    [all...]
  /external/chromium_org/v8/src/ic/mips/
handler-compiler-mips.cc 527 Handle<Map> current_map = receiver_map; local
531 while (!current_map.is_identical_to(holder_map)) {
536 DCHECK(current_map->IsJSGlobalProxyMap() ||
537 !current_map->is_access_check_needed());
539 prototype = handle(JSObject::cast(current_map->prototype()));
540 if (current_map->is_dictionary_map() &&
541 !current_map->IsJSGlobalObjectMap()) {
542 DCHECK(!current_map->IsJSGlobalProxyMap()); // Proxy maps are fast.
561 __ CheckMap(reg, map_reg, current_map, miss, DONT_DO_SMI_CHECK);
572 if (current_map->IsJSGlobalProxyMap())
    [all...]
  /external/chromium_org/v8/src/ic/mips64/
handler-compiler-mips64.cc 527 Handle<Map> current_map = receiver_map; local
531 while (!current_map.is_identical_to(holder_map)) {
536 DCHECK(current_map->IsJSGlobalProxyMap() ||
537 !current_map->is_access_check_needed());
539 prototype = handle(JSObject::cast(current_map->prototype()));
540 if (current_map->is_dictionary_map() &&
541 !current_map->IsJSGlobalObjectMap()) {
542 DCHECK(!current_map->IsJSGlobalProxyMap()); // Proxy maps are fast.
567 __ CheckMap(reg, map_reg, current_map, miss, DONT_DO_SMI_CHECK);
578 if (current_map->IsJSGlobalProxyMap())
    [all...]
  /external/chromium_org/v8/src/ic/x64/
handler-compiler-x64.cc 515 Handle<Map> current_map = receiver_map; local
519 while (!current_map.is_identical_to(holder_map)) {
524 DCHECK(current_map->IsJSGlobalProxyMap() ||
525 !current_map->is_access_check_needed());
527 prototype = handle(JSObject::cast(current_map->prototype()));
528 if (current_map->is_dictionary_map() &&
529 !current_map->IsJSGlobalObjectMap()) {
530 DCHECK(!current_map->IsJSGlobalProxyMap()); // Proxy maps are fast.
557 __ CheckMap(reg, current_map, miss, DONT_DO_SMI_CHECK);
566 if (current_map->IsJSGlobalProxyMap())
    [all...]
  /external/chromium_org/v8/src/ic/x87/
handler-compiler-x87.cc 520 Handle<Map> current_map = receiver_map; local
524 while (!current_map.is_identical_to(holder_map)) {
529 DCHECK(current_map->IsJSGlobalProxyMap() ||
530 !current_map->is_access_check_needed());
532 prototype = handle(JSObject::cast(current_map->prototype()));
533 if (current_map->is_dictionary_map() &&
534 !current_map->IsJSGlobalObjectMap()) {
535 DCHECK(!current_map->IsJSGlobalProxyMap()); // Proxy maps are fast.
558 __ CheckMap(reg, current_map, miss, DONT_DO_SMI_CHECK);
567 if (current_map->IsJSGlobalProxyMap())
    [all...]
  /external/chromium_org/v8/src/
transitions.h 148 bool IsConsistentWithBackPointers(Map* current_map);
objects-debug.cc     [all...]
objects.cc 3225 Map* current_map = map; local
3287 Handle<Map> current_map = map; local
9346 Handle<Map> current_map = initial_map; local
    [all...]
objects.h     [all...]
hydrogen.cc 7169 Handle<Map> current_map = types->at(i); local
    [all...]
  /external/chromium_org/v8/src/ic/
handler-compiler.cc 51 Handle<Map> current_map = stub_holder_map; local
54 if (current_map->is_dictionary_map()) cache_name = name;
55 if (current_map->prototype()->IsNull()) break;
56 last = handle(JSObject::cast(current_map->prototype()));
57 current_map = handle(last->map());

Completed in 167 milliseconds