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 954 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
965 } | 965 } |
966 | 966 |
967 if (needs_arguments_object_materialization) { | 967 if (needs_arguments_object_materialization) { |
968 HArgumentsObject* arguments = hydrogen_env->entry() == NULL | 968 HArgumentsObject* arguments = hydrogen_env->entry() == NULL |
969 ? graph()->GetArgumentsObject() | 969 ? graph()->GetArgumentsObject() |
970 : hydrogen_env->entry()->arguments_object(); | 970 : hydrogen_env->entry()->arguments_object(); |
971 ASSERT(arguments->IsLinked()); | 971 ASSERT(arguments->IsLinked()); |
972 for (int i = 1; i < arguments->arguments_count(); ++i) { | 972 for (int i = 1; i < arguments->arguments_count(); ++i) { |
973 HValue* value = arguments->arguments_values()->at(i); | 973 HValue* value = arguments->arguments_values()->at(i); |
974 ASSERT(!value->IsArgumentsObject() && !value->IsPushArgument()); | 974 ASSERT(!value->IsArgumentsObject() && !value->IsPushArgument()); |
975 ASSERT(HInstruction::cast(value)->IsLinked()); | |
976 LOperand* op = UseAny(value); | 975 LOperand* op = UseAny(value); |
977 result->AddValue(op, | 976 result->AddValue(op, |
978 value->representation(), | 977 value->representation(), |
979 value->CheckFlag(HInstruction::kUint32)); | 978 value->CheckFlag(HInstruction::kUint32)); |
980 } | 979 } |
981 } | 980 } |
982 | 981 |
983 if (hydrogen_env->frame_type() == JS_FUNCTION) { | 982 if (hydrogen_env->frame_type() == JS_FUNCTION) { |
984 *argument_index_accumulator = argument_index; | 983 *argument_index_accumulator = argument_index; |
985 } | 984 } |
(...skipping 1541 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2527 | 2526 |
2528 | 2527 |
2529 LInstruction* LChunkBuilder::DoLoadFieldByIndex(HLoadFieldByIndex* instr) { | 2528 LInstruction* LChunkBuilder::DoLoadFieldByIndex(HLoadFieldByIndex* instr) { |
2530 LOperand* object = UseRegister(instr->object()); | 2529 LOperand* object = UseRegister(instr->object()); |
2531 LOperand* index = UseRegister(instr->index()); | 2530 LOperand* index = UseRegister(instr->index()); |
2532 return DefineAsRegister(new(zone()) LLoadFieldByIndex(object, index)); | 2531 return DefineAsRegister(new(zone()) LLoadFieldByIndex(object, index)); |
2533 } | 2532 } |
2534 | 2533 |
2535 | 2534 |
2536 } } // namespace v8::internal | 2535 } } // namespace v8::internal |
OLD | NEW |