Index: src/ia32/lithium-codegen-ia32.cc |
diff --git a/src/ia32/lithium-codegen-ia32.cc b/src/ia32/lithium-codegen-ia32.cc |
index 137d62c554648a367a14cf67e69f1d404389017e..503e48157e1c58e6ac3187a0e412a71f5b3bc91a 100644 |
--- a/src/ia32/lithium-codegen-ia32.cc |
+++ b/src/ia32/lithium-codegen-ia32.cc |
@@ -1,4 +1,4 @@ |
-// Copyright 2011 the V8 project authors. All rights reserved. |
+// Copyright 2012 the V8 project authors. All rights reserved. |
// Redistribution and use in source and binary forms, with or without |
// modification, are permitted provided that the following conditions are |
// met: |
@@ -4033,13 +4033,45 @@ void LCodeGen::DoCheckFunction(LCheckFunction* instr) { |
} |
+void LCodeGen::DoCheckMapCommon(Register reg, |
+ Handle<Map> map, |
+ MapCheckMode mode, |
+ LEnvironment* env) { |
+ Label success; |
+ __ cmp(FieldOperand(reg, HeapObject::kMapOffset), Immediate(map)); |
+ if (mode == ALLOW_ELEMENT_TRANSITION_MAPS) { |
+ bool ignore; |
+ Map* transitioned_double_map = |
+ map->LookupElementsTransitionMap(FAST_DOUBLE_ELEMENTS, &ignore); |
+ ASSERT(transitioned_double_map == NULL || |
+ map->elements_kind() == FAST_SMI_ONLY_ELEMENTS); |
+ Map* transitioned_fast_element_map = |
+ map->LookupElementsTransitionMap(FAST_ELEMENTS, &ignore); |
+ ASSERT(transitioned_fast_element_map == NULL || |
+ map->elements_kind() != FAST_ELEMENTS); |
+ if (transitioned_fast_element_map != NULL) { |
+ __ j(equal, &success, Label::kNear); |
+ __ cmp(FieldOperand(reg, HeapObject::kMapOffset), |
+ Immediate(Handle<Map>(transitioned_fast_element_map))); |
+ } |
+ |
+ if (transitioned_double_map != NULL) { |
+ __ j(equal, &success, Label::kNear); |
+ __ cmp(FieldOperand(reg, HeapObject::kMapOffset), |
+ Immediate(Handle<Map>(transitioned_double_map))); |
+ } |
+ } |
+ DeoptimizeIf(not_equal, env); |
+ __ bind(&success); |
+} |
+ |
+ |
void LCodeGen::DoCheckMap(LCheckMap* instr) { |
LOperand* input = instr->InputAt(0); |
ASSERT(input->IsRegister()); |
Register reg = ToRegister(input); |
- __ cmp(FieldOperand(reg, HeapObject::kMapOffset), |
- instr->hydrogen()->map()); |
- DeoptimizeIf(not_equal, instr->environment()); |
+ Handle<Map> map = Handle<Map>(instr->hydrogen()->map()); |
+ DoCheckMapCommon(reg, map, instr->hydrogen()->mode(), instr->environment()); |
} |
@@ -4102,9 +4134,9 @@ void LCodeGen::DoCheckPrototypeMaps(LCheckPrototypeMaps* instr) { |
// Check prototype maps up to the holder. |
while (!current_prototype.is_identical_to(holder)) { |
- __ cmp(FieldOperand(reg, HeapObject::kMapOffset), |
- Handle<Map>(current_prototype->map())); |
- DeoptimizeIf(not_equal, instr->environment()); |
+ DoCheckMapCommon(reg, Handle<Map>(current_prototype->map()), |
+ ALLOW_ELEMENT_TRANSITION_MAPS, instr->environment()); |
+ |
current_prototype = |
Handle<JSObject>(JSObject::cast(current_prototype->GetPrototype())); |
// Load next prototype object. |
@@ -4112,9 +4144,8 @@ void LCodeGen::DoCheckPrototypeMaps(LCheckPrototypeMaps* instr) { |
} |
// Check the holder map. |
- __ cmp(FieldOperand(reg, HeapObject::kMapOffset), |
- Handle<Map>(current_prototype->map())); |
- DeoptimizeIf(not_equal, instr->environment()); |
+ DoCheckMapCommon(reg, Handle<Map>(current_prototype->map()), |
+ ALLOW_ELEMENT_TRANSITION_MAPS, instr->environment()); |
} |