Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(67)

Side by Side Diff: src/arm/macro-assembler-arm.cc

Issue 9015020: Make sure transitioned arrays efficiently call builtin Array functions (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: fix perf regression Created 8 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright 2011 the V8 project authors. All rights reserved. 1 // Copyright 2012 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
11 // with the distribution. 11 // with the distribution.
(...skipping 1973 matching lines...) Expand 10 before | Expand all | Expand 10 after
1985 CpuFeatures::Scope scope(VFP3); 1985 CpuFeatures::Scope scope(VFP3);
1986 vstr(d0, scratch1, 0); 1986 vstr(d0, scratch1, 0);
1987 } else { 1987 } else {
1988 str(mantissa_reg, MemOperand(scratch1, 0)); 1988 str(mantissa_reg, MemOperand(scratch1, 0));
1989 str(exponent_reg, MemOperand(scratch1, Register::kSizeInBytes)); 1989 str(exponent_reg, MemOperand(scratch1, Register::kSizeInBytes));
1990 } 1990 }
1991 bind(&done); 1991 bind(&done);
1992 } 1992 }
1993 1993
1994 1994
1995 void MacroAssembler::CompareMap(Register obj,
1996 Register scratch,
1997 Handle<Map> map,
1998 Label* early_success,
1999 CompareMapMode mode) {
2000 ldr(scratch, FieldMemOperand(obj, HeapObject::kMapOffset));
2001 cmp(scratch, Operand(map));
2002 if (mode == ALLOW_ELEMENT_TRANSITION_MAPS) {
2003 Map* transitioned_fast_element_map(
2004 map->LookupElementsTransitionMap(FAST_ELEMENTS, NULL));
2005 ASSERT(transitioned_fast_element_map == NULL ||
2006 map->elements_kind() != FAST_ELEMENTS);
2007 if (transitioned_fast_element_map != NULL) {
2008 b(eq, early_success);
2009 cmp(scratch, Operand(Handle<Map>(transitioned_fast_element_map)));
2010 }
2011
2012 Map* transitioned_double_map(
2013 map->LookupElementsTransitionMap(FAST_DOUBLE_ELEMENTS, NULL));
2014 ASSERT(transitioned_double_map == NULL ||
2015 map->elements_kind() == FAST_SMI_ONLY_ELEMENTS);
2016 if (transitioned_double_map != NULL) {
2017 b(eq, early_success);
2018 cmp(scratch, Operand(Handle<Map>(transitioned_double_map)));
2019 }
2020 }
2021 }
2022
2023
1995 void MacroAssembler::CheckMap(Register obj, 2024 void MacroAssembler::CheckMap(Register obj,
1996 Register scratch, 2025 Register scratch,
1997 Handle<Map> map, 2026 Handle<Map> map,
1998 Label* fail, 2027 Label* fail,
1999 SmiCheckType smi_check_type) { 2028 SmiCheckType smi_check_type,
2029 CompareMapMode mode) {
2000 if (smi_check_type == DO_SMI_CHECK) { 2030 if (smi_check_type == DO_SMI_CHECK) {
2001 JumpIfSmi(obj, fail); 2031 JumpIfSmi(obj, fail);
2002 } 2032 }
2003 ldr(scratch, FieldMemOperand(obj, HeapObject::kMapOffset)); 2033
2004 mov(ip, Operand(map)); 2034 Label success;
2005 cmp(scratch, ip); 2035 CompareMap(obj, scratch, map, &success, mode);
2006 b(ne, fail); 2036 b(ne, fail);
2037 bind(&success);
2007 } 2038 }
2008 2039
2009 2040
2010 void MacroAssembler::CheckMap(Register obj, 2041 void MacroAssembler::CheckMap(Register obj,
2011 Register scratch, 2042 Register scratch,
2012 Heap::RootListIndex index, 2043 Heap::RootListIndex index,
2013 Label* fail, 2044 Label* fail,
2014 SmiCheckType smi_check_type) { 2045 SmiCheckType smi_check_type) {
2015 if (smi_check_type == DO_SMI_CHECK) { 2046 if (smi_check_type == DO_SMI_CHECK) {
2016 JumpIfSmi(obj, fail); 2047 JumpIfSmi(obj, fail);
(...skipping 1608 matching lines...) Expand 10 before | Expand all | Expand 10 after
3625 void CodePatcher::EmitCondition(Condition cond) { 3656 void CodePatcher::EmitCondition(Condition cond) {
3626 Instr instr = Assembler::instr_at(masm_.pc_); 3657 Instr instr = Assembler::instr_at(masm_.pc_);
3627 instr = (instr & ~kCondMask) | cond; 3658 instr = (instr & ~kCondMask) | cond;
3628 masm_.emit(instr); 3659 masm_.emit(instr);
3629 } 3660 }
3630 3661
3631 3662
3632 } } // namespace v8::internal 3663 } } // namespace v8::internal
3633 3664
3634 #endif // V8_TARGET_ARCH_ARM 3665 #endif // V8_TARGET_ARCH_ARM
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698