OLD | NEW |
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 2259 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2270 LPlatformChunk* chunk() const { return chunk_; } | 2270 LPlatformChunk* chunk() const { return chunk_; } |
2271 CompilationInfo* info() const { return info_; } | 2271 CompilationInfo* info() const { return info_; } |
2272 HGraph* graph() const { return graph_; } | 2272 HGraph* graph() const { return graph_; } |
2273 Zone* zone() const { return zone_; } | 2273 Zone* zone() const { return zone_; } |
2274 | 2274 |
2275 bool is_unused() const { return status_ == UNUSED; } | 2275 bool is_unused() const { return status_ == UNUSED; } |
2276 bool is_building() const { return status_ == BUILDING; } | 2276 bool is_building() const { return status_ == BUILDING; } |
2277 bool is_done() const { return status_ == DONE; } | 2277 bool is_done() const { return status_ == DONE; } |
2278 bool is_aborted() const { return status_ == ABORTED; } | 2278 bool is_aborted() const { return status_ == ABORTED; } |
2279 | 2279 |
2280 void Abort(const char* format, ...); | 2280 void Abort(const char* reason); |
2281 | 2281 |
2282 // Methods for getting operands for Use / Define / Temp. | 2282 // Methods for getting operands for Use / Define / Temp. |
2283 LUnallocated* ToUnallocated(Register reg); | 2283 LUnallocated* ToUnallocated(Register reg); |
2284 LUnallocated* ToUnallocated(XMMRegister reg); | 2284 LUnallocated* ToUnallocated(XMMRegister reg); |
2285 | 2285 |
2286 // Methods for setting up define-use relationships. | 2286 // Methods for setting up define-use relationships. |
2287 MUST_USE_RESULT LOperand* Use(HValue* value, LUnallocated* operand); | 2287 MUST_USE_RESULT LOperand* Use(HValue* value, LUnallocated* operand); |
2288 MUST_USE_RESULT LOperand* UseFixed(HValue* value, Register fixed_register); | 2288 MUST_USE_RESULT LOperand* UseFixed(HValue* value, Register fixed_register); |
2289 MUST_USE_RESULT LOperand* UseFixedDouble(HValue* value, | 2289 MUST_USE_RESULT LOperand* UseFixedDouble(HValue* value, |
2290 XMMRegister fixed_register); | 2290 XMMRegister fixed_register); |
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2387 | 2387 |
2388 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder); | 2388 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder); |
2389 }; | 2389 }; |
2390 | 2390 |
2391 #undef DECLARE_HYDROGEN_ACCESSOR | 2391 #undef DECLARE_HYDROGEN_ACCESSOR |
2392 #undef DECLARE_CONCRETE_INSTRUCTION | 2392 #undef DECLARE_CONCRETE_INSTRUCTION |
2393 | 2393 |
2394 } } // namespace v8::int | 2394 } } // namespace v8::int |
2395 | 2395 |
2396 #endif // V8_X64_LITHIUM_X64_H_ | 2396 #endif // V8_X64_LITHIUM_X64_H_ |
OLD | NEW |