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

Side by Side Diff: src/hydrogen.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: Implement all platforms 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 4633 matching lines...) Expand 10 before | Expand all | Expand 10 after
4645 4645
4646 void HGraphBuilder::AddCheckConstantFunction(Call* expr, 4646 void HGraphBuilder::AddCheckConstantFunction(Call* expr,
4647 HValue* receiver, 4647 HValue* receiver,
4648 Handle<Map> receiver_map, 4648 Handle<Map> receiver_map,
4649 bool smi_and_map_check) { 4649 bool smi_and_map_check) {
4650 // Constant functions have the nice property that the map will change if they 4650 // Constant functions have the nice property that the map will change if they
4651 // are overwritten. Therefore it is enough to check the map of the holder and 4651 // are overwritten. Therefore it is enough to check the map of the holder and
4652 // its prototypes. 4652 // its prototypes.
4653 if (smi_and_map_check) { 4653 if (smi_and_map_check) {
4654 AddInstruction(new(zone()) HCheckNonSmi(receiver)); 4654 AddInstruction(new(zone()) HCheckNonSmi(receiver));
4655 AddInstruction(new(zone()) HCheckMap(receiver, receiver_map)); 4655 AddInstruction(new(zone()) HCheckMap(receiver, receiver_map,
4656 NULL, ALLOW_ELEMENT_TRANSITION_MAPS));
4656 } 4657 }
4657 if (!expr->holder().is_null()) { 4658 if (!expr->holder().is_null()) {
4658 AddInstruction(new(zone()) HCheckPrototypeMaps( 4659 AddInstruction(new(zone()) HCheckPrototypeMaps(
4659 Handle<JSObject>(JSObject::cast(receiver_map->prototype())), 4660 Handle<JSObject>(JSObject::cast(receiver_map->prototype())),
4660 expr->holder())); 4661 expr->holder()));
4661 } 4662 }
4662 } 4663 }
4663 4664
4664 4665
4665 void HGraphBuilder::HandlePolymorphicCallNamed(Call* expr, 4666 void HGraphBuilder::HandlePolymorphicCallNamed(Call* expr,
(...skipping 2645 matching lines...) Expand 10 before | Expand all | Expand 10 after
7311 } 7312 }
7312 } 7313 }
7313 7314
7314 #ifdef DEBUG 7315 #ifdef DEBUG
7315 if (graph_ != NULL) graph_->Verify(false); // No full verify. 7316 if (graph_ != NULL) graph_->Verify(false); // No full verify.
7316 if (allocator_ != NULL) allocator_->Verify(); 7317 if (allocator_ != NULL) allocator_->Verify();
7317 #endif 7318 #endif
7318 } 7319 }
7319 7320
7320 } } // namespace v8::internal 7321 } } // namespace v8::internal
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698