| 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 2304 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2315 LPlatformChunk* chunk() const { return chunk_; } | 2315 LPlatformChunk* chunk() const { return chunk_; } |
| 2316 CompilationInfo* info() const { return info_; } | 2316 CompilationInfo* info() const { return info_; } |
| 2317 HGraph* graph() const { return graph_; } | 2317 HGraph* graph() const { return graph_; } |
| 2318 Zone* zone() const { return zone_; } | 2318 Zone* zone() const { return zone_; } |
| 2319 | 2319 |
| 2320 bool is_unused() const { return status_ == UNUSED; } | 2320 bool is_unused() const { return status_ == UNUSED; } |
| 2321 bool is_building() const { return status_ == BUILDING; } | 2321 bool is_building() const { return status_ == BUILDING; } |
| 2322 bool is_done() const { return status_ == DONE; } | 2322 bool is_done() const { return status_ == DONE; } |
| 2323 bool is_aborted() const { return status_ == ABORTED; } | 2323 bool is_aborted() const { return status_ == ABORTED; } |
| 2324 | 2324 |
| 2325 void Abort(const char* format, ...); | 2325 void Abort(const char* reason); |
| 2326 | 2326 |
| 2327 // Methods for getting operands for Use / Define / Temp. | 2327 // Methods for getting operands for Use / Define / Temp. |
| 2328 LUnallocated* ToUnallocated(Register reg); | 2328 LUnallocated* ToUnallocated(Register reg); |
| 2329 LUnallocated* ToUnallocated(DoubleRegister reg); | 2329 LUnallocated* ToUnallocated(DoubleRegister reg); |
| 2330 | 2330 |
| 2331 // Methods for setting up define-use relationships. | 2331 // Methods for setting up define-use relationships. |
| 2332 MUST_USE_RESULT LOperand* Use(HValue* value, LUnallocated* operand); | 2332 MUST_USE_RESULT LOperand* Use(HValue* value, LUnallocated* operand); |
| 2333 MUST_USE_RESULT LOperand* UseFixed(HValue* value, Register fixed_register); | 2333 MUST_USE_RESULT LOperand* UseFixed(HValue* value, Register fixed_register); |
| 2334 MUST_USE_RESULT LOperand* UseFixedDouble(HValue* value, | 2334 MUST_USE_RESULT LOperand* UseFixedDouble(HValue* value, |
| 2335 DoubleRegister fixed_register); | 2335 DoubleRegister fixed_register); |
| (...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2428 | 2428 |
| 2429 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder); | 2429 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder); |
| 2430 }; | 2430 }; |
| 2431 | 2431 |
| 2432 #undef DECLARE_HYDROGEN_ACCESSOR | 2432 #undef DECLARE_HYDROGEN_ACCESSOR |
| 2433 #undef DECLARE_CONCRETE_INSTRUCTION | 2433 #undef DECLARE_CONCRETE_INSTRUCTION |
| 2434 | 2434 |
| 2435 } } // namespace v8::internal | 2435 } } // namespace v8::internal |
| 2436 | 2436 |
| 2437 #endif // V8_ARM_LITHIUM_ARM_H_ | 2437 #endif // V8_ARM_LITHIUM_ARM_H_ |
| OLD | NEW |