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

Side by Side Diff: src/mips/lithium-mips.h

Issue 9301040: Remove a little more dead code from lithium-* files. (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 8 years, 10 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/ia32/lithium-ia32.cc ('k') | src/mips/lithium-mips.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 2193 matching lines...) Expand 10 before | Expand all | Expand 10 after
2204 MUST_USE_RESULT LUnallocated* TempRegister(); 2204 MUST_USE_RESULT LUnallocated* TempRegister();
2205 MUST_USE_RESULT LOperand* FixedTemp(Register reg); 2205 MUST_USE_RESULT LOperand* FixedTemp(Register reg);
2206 MUST_USE_RESULT LOperand* FixedTemp(DoubleRegister reg); 2206 MUST_USE_RESULT LOperand* FixedTemp(DoubleRegister reg);
2207 2207
2208 // Methods for setting up define-use relationships. 2208 // Methods for setting up define-use relationships.
2209 // Return the same instruction that they are passed. 2209 // Return the same instruction that they are passed.
2210 template<int I, int T> 2210 template<int I, int T>
2211 LInstruction* Define(LTemplateInstruction<1, I, T>* instr, 2211 LInstruction* Define(LTemplateInstruction<1, I, T>* instr,
2212 LUnallocated* result); 2212 LUnallocated* result);
2213 template<int I, int T> 2213 template<int I, int T>
2214 LInstruction* Define(LTemplateInstruction<1, I, T>* instr);
2215 template<int I, int T>
2216 LInstruction* DefineAsRegister(LTemplateInstruction<1, I, T>* instr); 2214 LInstruction* DefineAsRegister(LTemplateInstruction<1, I, T>* instr);
2217 template<int I, int T> 2215 template<int I, int T>
2218 LInstruction* DefineAsSpilled(LTemplateInstruction<1, I, T>* instr, 2216 LInstruction* DefineAsSpilled(LTemplateInstruction<1, I, T>* instr,
2219 int index); 2217 int index);
2220 template<int I, int T> 2218 template<int I, int T>
2221 LInstruction* DefineSameAsFirst(LTemplateInstruction<1, I, T>* instr); 2219 LInstruction* DefineSameAsFirst(LTemplateInstruction<1, I, T>* instr);
2222 template<int I, int T> 2220 template<int I, int T>
2223 LInstruction* DefineFixed(LTemplateInstruction<1, I, T>* instr, 2221 LInstruction* DefineFixed(LTemplateInstruction<1, I, T>* instr,
2224 Register reg); 2222 Register reg);
2225 template<int I, int T> 2223 template<int I, int T>
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
2271 2269
2272 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder); 2270 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder);
2273 }; 2271 };
2274 2272
2275 #undef DECLARE_HYDROGEN_ACCESSOR 2273 #undef DECLARE_HYDROGEN_ACCESSOR
2276 #undef DECLARE_CONCRETE_INSTRUCTION 2274 #undef DECLARE_CONCRETE_INSTRUCTION
2277 2275
2278 } } // namespace v8::internal 2276 } } // namespace v8::internal
2279 2277
2280 #endif // V8_MIPS_LITHIUM_MIPS_H_ 2278 #endif // V8_MIPS_LITHIUM_MIPS_H_
OLDNEW
« no previous file with comments | « src/ia32/lithium-ia32.cc ('k') | src/mips/lithium-mips.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698