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

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

Issue 9297059: Remove a dead method 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 2143 matching lines...) Expand 10 before | Expand all | Expand 10 after
2154 HGraph* graph() const { return graph_; } 2154 HGraph* graph() const { return graph_; }
2155 2155
2156 bool is_unused() const { return status_ == UNUSED; } 2156 bool is_unused() const { return status_ == UNUSED; }
2157 bool is_building() const { return status_ == BUILDING; } 2157 bool is_building() const { return status_ == BUILDING; }
2158 bool is_done() const { return status_ == DONE; } 2158 bool is_done() const { return status_ == DONE; }
2159 bool is_aborted() const { return status_ == ABORTED; } 2159 bool is_aborted() const { return status_ == ABORTED; }
2160 2160
2161 void Abort(const char* format, ...); 2161 void Abort(const char* format, ...);
2162 2162
2163 // Methods for getting operands for Use / Define / Temp. 2163 // Methods for getting operands for Use / Define / Temp.
2164 LRegister* ToOperand(Register reg);
2165 LUnallocated* ToUnallocated(Register reg); 2164 LUnallocated* ToUnallocated(Register reg);
2166 LUnallocated* ToUnallocated(DoubleRegister reg); 2165 LUnallocated* ToUnallocated(DoubleRegister reg);
2167 2166
2168 // Methods for setting up define-use relationships. 2167 // Methods for setting up define-use relationships.
2169 MUST_USE_RESULT LOperand* Use(HValue* value, LUnallocated* operand); 2168 MUST_USE_RESULT LOperand* Use(HValue* value, LUnallocated* operand);
2170 MUST_USE_RESULT LOperand* UseFixed(HValue* value, Register fixed_register); 2169 MUST_USE_RESULT LOperand* UseFixed(HValue* value, Register fixed_register);
2171 MUST_USE_RESULT LOperand* UseFixedDouble(HValue* value, 2170 MUST_USE_RESULT LOperand* UseFixedDouble(HValue* value,
2172 DoubleRegister fixed_register); 2171 DoubleRegister fixed_register);
2173 2172
2174 // A value that is guaranteed to be allocated to a register. 2173 // A value that is guaranteed to be allocated to a register.
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after
2272 2271
2273 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder); 2272 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder);
2274 }; 2273 };
2275 2274
2276 #undef DECLARE_HYDROGEN_ACCESSOR 2275 #undef DECLARE_HYDROGEN_ACCESSOR
2277 #undef DECLARE_CONCRETE_INSTRUCTION 2276 #undef DECLARE_CONCRETE_INSTRUCTION
2278 2277
2279 } } // namespace v8::internal 2278 } } // namespace v8::internal
2280 2279
2281 #endif // V8_MIPS_LITHIUM_MIPS_H_ 2280 #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