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

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

Issue 94983002: ARM: Optimize NumberTagU (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years 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/arm/lithium-codegen-arm.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 2002 matching lines...) Expand 10 before | Expand all | Expand 10 after
2013 LDoubleToI* res = new(zone()) LDoubleToI(value); 2013 LDoubleToI* res = new(zone()) LDoubleToI(value);
2014 return AssignEnvironment(DefineAsRegister(res)); 2014 return AssignEnvironment(DefineAsRegister(res));
2015 } 2015 }
2016 } else if (from.IsInteger32()) { 2016 } else if (from.IsInteger32()) {
2017 info()->MarkAsDeferredCalling(); 2017 info()->MarkAsDeferredCalling();
2018 if (to.IsTagged()) { 2018 if (to.IsTagged()) {
2019 HValue* val = instr->value(); 2019 HValue* val = instr->value();
2020 LOperand* value = UseRegisterAtStart(val); 2020 LOperand* value = UseRegisterAtStart(val);
2021 if (val->CheckFlag(HInstruction::kUint32)) { 2021 if (val->CheckFlag(HInstruction::kUint32)) {
2022 LNumberTagU* result = new(zone()) LNumberTagU(value); 2022 LNumberTagU* result = new(zone()) LNumberTagU(value);
2023 return AssignEnvironment(AssignPointerMap(DefineSameAsFirst(result))); 2023 return AssignEnvironment(AssignPointerMap(DefineAsRegister(result)));
2024 } else if (val->HasRange() && val->range()->IsInSmiRange()) { 2024 } else if (val->HasRange() && val->range()->IsInSmiRange()) {
2025 return DefineAsRegister(new(zone()) LSmiTag(value)); 2025 return DefineAsRegister(new(zone()) LSmiTag(value));
2026 } else { 2026 } else {
2027 LNumberTagI* result = new(zone()) LNumberTagI(value); 2027 LNumberTagI* result = new(zone()) LNumberTagI(value);
2028 return AssignEnvironment(AssignPointerMap(DefineAsRegister(result))); 2028 return AssignEnvironment(AssignPointerMap(DefineAsRegister(result)));
2029 } 2029 }
2030 } else if (to.IsSmi()) { 2030 } else if (to.IsSmi()) {
2031 HValue* val = instr->value(); 2031 HValue* val = instr->value();
2032 LOperand* value = UseRegister(val); 2032 LOperand* value = UseRegister(val);
2033 LInstruction* result = val->CheckFlag(HInstruction::kUint32) 2033 LInstruction* result = val->CheckFlag(HInstruction::kUint32)
(...skipping 641 matching lines...) Expand 10 before | Expand all | Expand 10 after
2675 2675
2676 2676
2677 LInstruction* LChunkBuilder::DoLoadFieldByIndex(HLoadFieldByIndex* instr) { 2677 LInstruction* LChunkBuilder::DoLoadFieldByIndex(HLoadFieldByIndex* instr) {
2678 LOperand* object = UseRegister(instr->object()); 2678 LOperand* object = UseRegister(instr->object());
2679 LOperand* index = UseRegister(instr->index()); 2679 LOperand* index = UseRegister(instr->index());
2680 return DefineAsRegister(new(zone()) LLoadFieldByIndex(object, index)); 2680 return DefineAsRegister(new(zone()) LLoadFieldByIndex(object, index));
2681 } 2681 }
2682 2682
2683 2683
2684 } } // namespace v8::internal 2684 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « no previous file | src/arm/lithium-codegen-arm.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698