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

Side by Side Diff: src/arm/lithium-arm.cc

Issue 17057002: Remove bogus cast in LChunkBuilder::CreateEnvironment. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years, 6 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
« no previous file with comments | « no previous file | src/ia32/lithium-ia32.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « no previous file | src/ia32/lithium-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698