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

Side by Side Diff: src/ia32/lithium-ia32.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/arm/lithium-arm.cc ('k') | 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 2305 matching lines...) Expand 10 before | Expand all | Expand 10 after
2316 MUST_USE_RESULT LUnallocated* TempRegister(); 2316 MUST_USE_RESULT LUnallocated* TempRegister();
2317 MUST_USE_RESULT LOperand* FixedTemp(Register reg); 2317 MUST_USE_RESULT LOperand* FixedTemp(Register reg);
2318 MUST_USE_RESULT LOperand* FixedTemp(XMMRegister reg); 2318 MUST_USE_RESULT LOperand* FixedTemp(XMMRegister reg);
2319 2319
2320 // Methods for setting up define-use relationships. 2320 // Methods for setting up define-use relationships.
2321 // Return the same instruction that they are passed. 2321 // Return the same instruction that they are passed.
2322 template<int I, int T> 2322 template<int I, int T>
2323 LInstruction* Define(LTemplateInstruction<1, I, T>* instr, 2323 LInstruction* Define(LTemplateInstruction<1, I, T>* instr,
2324 LUnallocated* result); 2324 LUnallocated* result);
2325 template<int I, int T> 2325 template<int I, int T>
2326 LInstruction* Define(LTemplateInstruction<1, I, T>* instr);
2327 template<int I, int T>
2328 LInstruction* DefineAsRegister(LTemplateInstruction<1, I, T>* instr); 2326 LInstruction* DefineAsRegister(LTemplateInstruction<1, I, T>* instr);
2329 template<int I, int T> 2327 template<int I, int T>
2330 LInstruction* DefineAsSpilled(LTemplateInstruction<1, I, T>* instr, 2328 LInstruction* DefineAsSpilled(LTemplateInstruction<1, I, T>* instr,
2331 int index); 2329 int index);
2332 template<int I, int T> 2330 template<int I, int T>
2333 LInstruction* DefineSameAsFirst(LTemplateInstruction<1, I, T>* instr); 2331 LInstruction* DefineSameAsFirst(LTemplateInstruction<1, I, T>* instr);
2334 template<int I, int T> 2332 template<int I, int T>
2335 LInstruction* DefineFixed(LTemplateInstruction<1, I, T>* instr, 2333 LInstruction* DefineFixed(LTemplateInstruction<1, I, T>* instr,
2336 Register reg); 2334 Register reg);
2337 template<int I, int T> 2335 template<int I, int T>
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
2387 2385
2388 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder); 2386 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder);
2389 }; 2387 };
2390 2388
2391 #undef DECLARE_HYDROGEN_ACCESSOR 2389 #undef DECLARE_HYDROGEN_ACCESSOR
2392 #undef DECLARE_CONCRETE_INSTRUCTION 2390 #undef DECLARE_CONCRETE_INSTRUCTION
2393 2391
2394 } } // namespace v8::internal 2392 } } // namespace v8::internal
2395 2393
2396 #endif // V8_IA32_LITHIUM_IA32_H_ 2394 #endif // V8_IA32_LITHIUM_IA32_H_
OLDNEW
« no previous file with comments | « src/arm/lithium-arm.cc ('k') | src/ia32/lithium-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698