| 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 1011 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1022 } | 1022 } |
| 1023 | 1023 |
| 1024 if (needs_arguments_object_materialization) { | 1024 if (needs_arguments_object_materialization) { |
| 1025 HArgumentsObject* arguments = hydrogen_env->entry() == NULL | 1025 HArgumentsObject* arguments = hydrogen_env->entry() == NULL |
| 1026 ? graph()->GetArgumentsObject() | 1026 ? graph()->GetArgumentsObject() |
| 1027 : hydrogen_env->entry()->arguments_object(); | 1027 : hydrogen_env->entry()->arguments_object(); |
| 1028 ASSERT(arguments->IsLinked()); | 1028 ASSERT(arguments->IsLinked()); |
| 1029 for (int i = 1; i < arguments->arguments_count(); ++i) { | 1029 for (int i = 1; i < arguments->arguments_count(); ++i) { |
| 1030 HValue* value = arguments->arguments_values()->at(i); | 1030 HValue* value = arguments->arguments_values()->at(i); |
| 1031 ASSERT(!value->IsArgumentsObject() && !value->IsPushArgument()); | 1031 ASSERT(!value->IsArgumentsObject() && !value->IsPushArgument()); |
| 1032 ASSERT(HInstruction::cast(value)->IsLinked()); | |
| 1033 LOperand* op = UseAny(value); | 1032 LOperand* op = UseAny(value); |
| 1034 result->AddValue(op, | 1033 result->AddValue(op, |
| 1035 value->representation(), | 1034 value->representation(), |
| 1036 value->CheckFlag(HInstruction::kUint32)); | 1035 value->CheckFlag(HInstruction::kUint32)); |
| 1037 } | 1036 } |
| 1038 } | 1037 } |
| 1039 | 1038 |
| 1040 if (hydrogen_env->frame_type() == JS_FUNCTION) { | 1039 if (hydrogen_env->frame_type() == JS_FUNCTION) { |
| 1041 *argument_index_accumulator = argument_index; | 1040 *argument_index_accumulator = argument_index; |
| 1042 } | 1041 } |
| (...skipping 1767 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2810 LInstruction* LChunkBuilder::DoLoadFieldByIndex(HLoadFieldByIndex* instr) { | 2809 LInstruction* LChunkBuilder::DoLoadFieldByIndex(HLoadFieldByIndex* instr) { |
| 2811 LOperand* object = UseRegister(instr->object()); | 2810 LOperand* object = UseRegister(instr->object()); |
| 2812 LOperand* index = UseTempRegister(instr->index()); | 2811 LOperand* index = UseTempRegister(instr->index()); |
| 2813 return DefineSameAsFirst(new(zone()) LLoadFieldByIndex(object, index)); | 2812 return DefineSameAsFirst(new(zone()) LLoadFieldByIndex(object, index)); |
| 2814 } | 2813 } |
| 2815 | 2814 |
| 2816 | 2815 |
| 2817 } } // namespace v8::internal | 2816 } } // namespace v8::internal |
| 2818 | 2817 |
| 2819 #endif // V8_TARGET_ARCH_IA32 | 2818 #endif // V8_TARGET_ARCH_IA32 |
| OLD | NEW |