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

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

Issue 19562003: Add support for IncrementCounter in Hydrogen. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Using HConstant, HLoadKeyed, HAdd and HStoreKeyed. Created 7 years, 5 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
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 2119 matching lines...) Expand 10 before | Expand all | Expand 10 after
2130 Representation r = instr->representation(); 2130 Representation r = instr->representation();
2131 if (r.IsSmi()) { 2131 if (r.IsSmi()) {
2132 return DefineAsRegister(new(zone()) LConstantS); 2132 return DefineAsRegister(new(zone()) LConstantS);
2133 } else if (r.IsInteger32()) { 2133 } else if (r.IsInteger32()) {
2134 return DefineAsRegister(new(zone()) LConstantI); 2134 return DefineAsRegister(new(zone()) LConstantI);
2135 } else if (r.IsDouble()) { 2135 } else if (r.IsDouble()) {
2136 double value = instr->DoubleValue(); 2136 double value = instr->DoubleValue();
2137 bool value_is_zero = BitCast<uint64_t, double>(value) == 0; 2137 bool value_is_zero = BitCast<uint64_t, double>(value) == 0;
2138 LOperand* temp = value_is_zero ? NULL : TempRegister(); 2138 LOperand* temp = value_is_zero ? NULL : TempRegister();
2139 return DefineAsRegister(new(zone()) LConstantD(temp)); 2139 return DefineAsRegister(new(zone()) LConstantD(temp));
2140 } else if (r.IsExternal()) {
2141 return DefineAsRegister(new(zone()) LConstantE);
2140 } else if (r.IsTagged()) { 2142 } else if (r.IsTagged()) {
2141 return DefineAsRegister(new(zone()) LConstantT); 2143 return DefineAsRegister(new(zone()) LConstantT);
2142 } else { 2144 } else {
2143 UNREACHABLE(); 2145 UNREACHABLE();
2144 return NULL; 2146 return NULL;
2145 } 2147 }
2146 } 2148 }
2147 2149
2148 2150
2149 LInstruction* LChunkBuilder::DoLoadGlobalCell(HLoadGlobalCell* instr) { 2151 LInstruction* LChunkBuilder::DoLoadGlobalCell(HLoadGlobalCell* instr) {
(...skipping 617 matching lines...) Expand 10 before | Expand all | Expand 10 after
2767 LInstruction* LChunkBuilder::DoLoadFieldByIndex(HLoadFieldByIndex* instr) { 2769 LInstruction* LChunkBuilder::DoLoadFieldByIndex(HLoadFieldByIndex* instr) {
2768 LOperand* object = UseRegister(instr->object()); 2770 LOperand* object = UseRegister(instr->object());
2769 LOperand* index = UseTempRegister(instr->index()); 2771 LOperand* index = UseTempRegister(instr->index());
2770 return DefineSameAsFirst(new(zone()) LLoadFieldByIndex(object, index)); 2772 return DefineSameAsFirst(new(zone()) LLoadFieldByIndex(object, index));
2771 } 2773 }
2772 2774
2773 2775
2774 } } // namespace v8::internal 2776 } } // namespace v8::internal
2775 2777
2776 #endif // V8_TARGET_ARCH_IA32 2778 #endif // V8_TARGET_ARCH_IA32
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698