Chromium Code Reviews| Index: src/hydrogen.cc |
| diff --git a/src/hydrogen.cc b/src/hydrogen.cc |
| index 4044f7fff130bc71fa0378dc105d10ac7fd044d5..de4428712d6a1e54aed2399f584c75b796adec50 100644 |
| --- a/src/hydrogen.cc |
| +++ b/src/hydrogen.cc |
| @@ -3734,6 +3734,29 @@ HInstruction* HGraphBuilder::BuildLoadKeyedFastElement(HValue* object, |
| } |
| +HInstruction* HGraphBuilder::BuildLoadKeyedPixelArrayElement(HValue* object, |
| + HValue* key, |
| + Property* expr) { |
| + ASSERT(!expr->key()->IsPropertyName() && expr->IsMonomorphic()); |
| + AddInstruction(new HCheckNonSmi(object)); |
| + Handle<Map> map = expr->GetMonomorphicReceiverType(); |
| + ASSERT(!map->has_fast_elements()); |
| + ASSERT(map->has_pixel_array_elements()); |
| + AddInstruction(new HCheckMap(object, map)); |
| + HLoadElements* elements = new HLoadElements(object); |
| + AddInstruction(elements); |
| + HInstruction* length = AddInstruction(new HPixelArrayLength(elements)); |
| + AddInstruction(new HBoundsCheck(key, length)); |
| + HLoadPixelArrayExternalPointer* external_elements = |
| + new HLoadPixelArrayExternalPointer(elements); |
| + AddInstruction(external_elements); |
| + HLoadPixelArrayElement* pixel_array_value = |
| + new HLoadPixelArrayElement(external_elements, |
|
Mads Ager (chromium)
2011/02/08 17:26:31
Move the second parameter to this line?
|
| + key); |
| + return pixel_array_value; |
| +} |
| + |
| + |
| HInstruction* HGraphBuilder::BuildStoreKeyedGeneric(HValue* object, |
| HValue* key, |
| HValue* value) { |
| @@ -3841,12 +3864,20 @@ void HGraphBuilder::VisitProperty(Property* expr) { |
| HValue* key = Pop(); |
| HValue* obj = Pop(); |
| - bool is_fast_elements = expr->IsMonomorphic() && |
| - expr->GetMonomorphicReceiverType()->has_fast_elements(); |
| - |
| - instr = is_fast_elements |
| - ? BuildLoadKeyedFastElement(obj, key, expr) |
| - : BuildLoadKeyedGeneric(obj, key); |
| + if (expr->IsMonomorphic()) { |
| + Handle<Map> receiver_type(expr->GetMonomorphicReceiverType()); |
| + // An object has either fast elements or pixel array elements, but never |
| + // both. Pixel array maps that are assigned to pixel array elements are |
| + // always created with the fast elements flag cleared. |
| + if (receiver_type->has_pixel_array_elements()) { |
| + instr = BuildLoadKeyedPixelArrayElement(obj, key, expr); |
| + } else if (receiver_type->has_fast_elements()) { |
| + instr = BuildLoadKeyedFastElement(obj, key, expr); |
| + } |
| + } |
| + if (instr == NULL) { |
| + instr = BuildLoadKeyedGeneric(obj, key); |
| + } |
| } |
| instr->set_position(expr->position()); |
| ast_context()->ReturnInstruction(instr, expr->id()); |