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

Side by Side Diff: src/hydrogen.cc

Issue 7003054: Fix bug with GVN on array loads. (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: fixed lint errors Created 9 years, 6 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 2011 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
(...skipping 3704 matching lines...) Expand 10 before | Expand all | Expand 10 after
3715 HValue* key, 3715 HValue* key,
3716 Property* expr) { 3716 Property* expr) {
3717 ASSERT(!expr->key()->IsPropertyName() && expr->IsMonomorphic()); 3717 ASSERT(!expr->key()->IsPropertyName() && expr->IsMonomorphic());
3718 AddInstruction(new(zone()) HCheckNonSmi(object)); 3718 AddInstruction(new(zone()) HCheckNonSmi(object));
3719 Handle<Map> map = expr->GetMonomorphicReceiverType(); 3719 Handle<Map> map = expr->GetMonomorphicReceiverType();
3720 ASSERT(map->has_fast_elements()); 3720 ASSERT(map->has_fast_elements());
3721 AddInstruction(new(zone()) HCheckMap(object, map)); 3721 AddInstruction(new(zone()) HCheckMap(object, map));
3722 bool is_array = (map->instance_type() == JS_ARRAY_TYPE); 3722 bool is_array = (map->instance_type() == JS_ARRAY_TYPE);
3723 HLoadElements* elements = new(zone()) HLoadElements(object); 3723 HLoadElements* elements = new(zone()) HLoadElements(object);
3724 HInstruction* length = NULL; 3724 HInstruction* length = NULL;
3725 HBoundsCheck* checked_key = NULL;
3725 if (is_array) { 3726 if (is_array) {
3726 length = AddInstruction(new(zone()) HJSArrayLength(object)); 3727 length = AddInstruction(new(zone()) HJSArrayLength(object));
3727 AddInstruction(new(zone()) HBoundsCheck(key, length)); 3728 AddInstruction(checked_key = new(zone()) HBoundsCheck(key, length));
Mads Ager (chromium) 2011/06/08 12:27:25 To match the line above can we do: checked_key =
fschneider 2011/06/08 12:33:55 Done.
3728 AddInstruction(elements); 3729 AddInstruction(elements);
3729 } else { 3730 } else {
3730 AddInstruction(elements); 3731 AddInstruction(elements);
3731 length = AddInstruction(new(zone()) HFixedArrayLength(elements)); 3732 length = AddInstruction(new(zone()) HFixedArrayLength(elements));
3732 AddInstruction(new(zone()) HBoundsCheck(key, length)); 3733 AddInstruction(checked_key = new(zone()) HBoundsCheck(key, length));
Mads Ager (chromium) 2011/06/08 12:27:25 Ditto.
fschneider 2011/06/08 12:33:55 Done.
3733 } 3734 }
3734 return new(zone()) HLoadKeyedFastElement(elements, key); 3735 return new(zone()) HLoadKeyedFastElement(elements, checked_key);
3735 } 3736 }
3736 3737
3737 3738
3738 HInstruction* HGraphBuilder::BuildLoadKeyedSpecializedArrayElement( 3739 HInstruction* HGraphBuilder::BuildLoadKeyedSpecializedArrayElement(
3739 HValue* object, 3740 HValue* object,
3740 HValue* key, 3741 HValue* key,
3741 Property* expr) { 3742 Property* expr) {
3742 ASSERT(!expr->key()->IsPropertyName() && expr->IsMonomorphic()); 3743 ASSERT(!expr->key()->IsPropertyName() && expr->IsMonomorphic());
3743 AddInstruction(new(zone()) HCheckNonSmi(object)); 3744 AddInstruction(new(zone()) HCheckNonSmi(object));
3744 Handle<Map> map = expr->GetMonomorphicReceiverType(); 3745 Handle<Map> map = expr->GetMonomorphicReceiverType();
(...skipping 2602 matching lines...) Expand 10 before | Expand all | Expand 10 after
6347 } 6348 }
6348 } 6349 }
6349 6350
6350 #ifdef DEBUG 6351 #ifdef DEBUG
6351 if (graph_ != NULL) graph_->Verify(); 6352 if (graph_ != NULL) graph_->Verify();
6352 if (allocator_ != NULL) allocator_->Verify(); 6353 if (allocator_ != NULL) allocator_->Verify();
6353 #endif 6354 #endif
6354 } 6355 }
6355 6356
6356 } } // namespace v8::internal 6357 } } // namespace v8::internal
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698