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

Side by Side Diff: src/lithium.cc

Issue 9836108: Rollback of r11015, r11014, r11011, r11010 in trunk branch. (Closed) Base URL: https://v8.googlecode.com/svn/trunk
Patch Set: Finish file upload Created 8 years, 9 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 | « src/lithium.h ('k') | src/lithium-allocator.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 2011 the V8 project authors. All rights reserved. 1 // Copyright 2011 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 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
87 break; 87 break;
88 case DOUBLE_REGISTER: 88 case DOUBLE_REGISTER:
89 stream->Add("[%s|R]", DoubleRegister::AllocationIndexToString(index())); 89 stream->Add("[%s|R]", DoubleRegister::AllocationIndexToString(index()));
90 break; 90 break;
91 case ARGUMENT: 91 case ARGUMENT:
92 stream->Add("[arg:%d]", index()); 92 stream->Add("[arg:%d]", index());
93 break; 93 break;
94 } 94 }
95 } 95 }
96 96
97 #define DEFINE_OPERAND_CACHE(name, type) \
98 name* name::cache = NULL; \
99 void name::SetUpCache() { \
100 if (cache) return; \
101 cache = new name[kNumCachedOperands]; \
102 for (int i = 0; i < kNumCachedOperands; i++) { \
103 cache[i].ConvertTo(type, i); \
104 } \
105 } \
106
107 DEFINE_OPERAND_CACHE(LConstantOperand, CONSTANT_OPERAND)
108 DEFINE_OPERAND_CACHE(LStackSlot, STACK_SLOT)
109 DEFINE_OPERAND_CACHE(LDoubleStackSlot, DOUBLE_STACK_SLOT)
110 DEFINE_OPERAND_CACHE(LRegister, REGISTER)
111 DEFINE_OPERAND_CACHE(LDoubleRegister, DOUBLE_REGISTER)
112
113 #undef DEFINE_OPERAND_CACHE
114
115 void LOperand::SetUpCaches() {
116 LConstantOperand::SetUpCache();
117 LStackSlot::SetUpCache();
118 LDoubleStackSlot::SetUpCache();
119 LRegister::SetUpCache();
120 LDoubleRegister::SetUpCache();
121 }
122 97
123 bool LParallelMove::IsRedundant() const { 98 bool LParallelMove::IsRedundant() const {
124 for (int i = 0; i < move_operands_.length(); ++i) { 99 for (int i = 0; i < move_operands_.length(); ++i) {
125 if (!move_operands_[i].IsRedundant()) return false; 100 if (!move_operands_[i].IsRedundant()) return false;
126 } 101 }
127 return true; 102 return true;
128 } 103 }
129 104
130 105
131 void LParallelMove::PrintDataTo(StringStream* stream) const { 106 void LParallelMove::PrintDataTo(StringStream* stream) const {
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
225 case DICTIONARY_ELEMENTS: 200 case DICTIONARY_ELEMENTS:
226 case NON_STRICT_ARGUMENTS_ELEMENTS: 201 case NON_STRICT_ARGUMENTS_ELEMENTS:
227 return kPointerSizeLog2; 202 return kPointerSizeLog2;
228 } 203 }
229 UNREACHABLE(); 204 UNREACHABLE();
230 return 0; 205 return 0;
231 } 206 }
232 207
233 208
234 } } // namespace v8::internal 209 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/lithium.h ('k') | src/lithium-allocator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698