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 2419 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2430 LPlatformChunk* chunk() const { return chunk_; } | 2430 LPlatformChunk* chunk() const { return chunk_; } |
2431 CompilationInfo* info() const { return info_; } | 2431 CompilationInfo* info() const { return info_; } |
2432 HGraph* graph() const { return graph_; } | 2432 HGraph* graph() const { return graph_; } |
2433 Zone* zone() const { return zone_; } | 2433 Zone* zone() const { return zone_; } |
2434 | 2434 |
2435 bool is_unused() const { return status_ == UNUSED; } | 2435 bool is_unused() const { return status_ == UNUSED; } |
2436 bool is_building() const { return status_ == BUILDING; } | 2436 bool is_building() const { return status_ == BUILDING; } |
2437 bool is_done() const { return status_ == DONE; } | 2437 bool is_done() const { return status_ == DONE; } |
2438 bool is_aborted() const { return status_ == ABORTED; } | 2438 bool is_aborted() const { return status_ == ABORTED; } |
2439 | 2439 |
2440 void Abort(const char* format, ...); | 2440 void Abort(const char* reason); |
2441 | 2441 |
2442 // Methods for getting operands for Use / Define / Temp. | 2442 // Methods for getting operands for Use / Define / Temp. |
2443 LUnallocated* ToUnallocated(Register reg); | 2443 LUnallocated* ToUnallocated(Register reg); |
2444 LUnallocated* ToUnallocated(XMMRegister reg); | 2444 LUnallocated* ToUnallocated(XMMRegister reg); |
2445 | 2445 |
2446 // Methods for setting up define-use relationships. | 2446 // Methods for setting up define-use relationships. |
2447 MUST_USE_RESULT LOperand* Use(HValue* value, LUnallocated* operand); | 2447 MUST_USE_RESULT LOperand* Use(HValue* value, LUnallocated* operand); |
2448 MUST_USE_RESULT LOperand* UseFixed(HValue* value, Register fixed_register); | 2448 MUST_USE_RESULT LOperand* UseFixed(HValue* value, Register fixed_register); |
2449 MUST_USE_RESULT LOperand* UseFixedDouble(HValue* value, | 2449 MUST_USE_RESULT LOperand* UseFixedDouble(HValue* value, |
2450 XMMRegister fixed_register); | 2450 XMMRegister fixed_register); |
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2547 | 2547 |
2548 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder); | 2548 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder); |
2549 }; | 2549 }; |
2550 | 2550 |
2551 #undef DECLARE_HYDROGEN_ACCESSOR | 2551 #undef DECLARE_HYDROGEN_ACCESSOR |
2552 #undef DECLARE_CONCRETE_INSTRUCTION | 2552 #undef DECLARE_CONCRETE_INSTRUCTION |
2553 | 2553 |
2554 } } // namespace v8::internal | 2554 } } // namespace v8::internal |
2555 | 2555 |
2556 #endif // V8_IA32_LITHIUM_IA32_H_ | 2556 #endif // V8_IA32_LITHIUM_IA32_H_ |
OLD | NEW |