OLD | NEW |
1 // Copyright 2012 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 |
(...skipping 950 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
961 } | 961 } |
962 | 962 |
963 if (needs_arguments_object_materialization) { | 963 if (needs_arguments_object_materialization) { |
964 HArgumentsObject* arguments = hydrogen_env->entry() == NULL | 964 HArgumentsObject* arguments = hydrogen_env->entry() == NULL |
965 ? graph()->GetArgumentsObject() | 965 ? graph()->GetArgumentsObject() |
966 : hydrogen_env->entry()->arguments_object(); | 966 : hydrogen_env->entry()->arguments_object(); |
967 ASSERT(arguments->IsLinked()); | 967 ASSERT(arguments->IsLinked()); |
968 for (int i = 1; i < arguments->arguments_count(); ++i) { | 968 for (int i = 1; i < arguments->arguments_count(); ++i) { |
969 HValue* value = arguments->arguments_values()->at(i); | 969 HValue* value = arguments->arguments_values()->at(i); |
970 ASSERT(!value->IsArgumentsObject() && !value->IsPushArgument()); | 970 ASSERT(!value->IsArgumentsObject() && !value->IsPushArgument()); |
971 ASSERT(HInstruction::cast(value)->IsLinked()); | |
972 LOperand* op = UseAny(value); | 971 LOperand* op = UseAny(value); |
973 result->AddValue(op, | 972 result->AddValue(op, |
974 value->representation(), | 973 value->representation(), |
975 value->CheckFlag(HInstruction::kUint32)); | 974 value->CheckFlag(HInstruction::kUint32)); |
976 } | 975 } |
977 } | 976 } |
978 | 977 |
979 if (hydrogen_env->frame_type() == JS_FUNCTION) { | 978 if (hydrogen_env->frame_type() == JS_FUNCTION) { |
980 *argument_index_accumulator = argument_index; | 979 *argument_index_accumulator = argument_index; |
981 } | 980 } |
(...skipping 1682 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2664 | 2663 |
2665 | 2664 |
2666 LInstruction* LChunkBuilder::DoLoadFieldByIndex(HLoadFieldByIndex* instr) { | 2665 LInstruction* LChunkBuilder::DoLoadFieldByIndex(HLoadFieldByIndex* instr) { |
2667 LOperand* object = UseRegister(instr->object()); | 2666 LOperand* object = UseRegister(instr->object()); |
2668 LOperand* index = UseRegister(instr->index()); | 2667 LOperand* index = UseRegister(instr->index()); |
2669 return DefineAsRegister(new(zone()) LLoadFieldByIndex(object, index)); | 2668 return DefineAsRegister(new(zone()) LLoadFieldByIndex(object, index)); |
2670 } | 2669 } |
2671 | 2670 |
2672 | 2671 |
2673 } } // namespace v8::internal | 2672 } } // namespace v8::internal |
OLD | NEW |