| 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 298 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 309 | 309 |
| 310 Isolate* isolate() const { return isolate_; } | 310 Isolate* isolate() const { return isolate_; } |
| 311 Zone* zone() const { return zone_; } | 311 Zone* zone() const { return zone_; } |
| 312 CompilationInfo* info() const { return info_; } | 312 CompilationInfo* info() const { return info_; } |
| 313 | 313 |
| 314 const ZoneList<HBasicBlock*>* blocks() const { return &blocks_; } | 314 const ZoneList<HBasicBlock*>* blocks() const { return &blocks_; } |
| 315 const ZoneList<HPhi*>* phi_list() const { return phi_list_; } | 315 const ZoneList<HPhi*>* phi_list() const { return phi_list_; } |
| 316 HBasicBlock* entry_block() const { return entry_block_; } | 316 HBasicBlock* entry_block() const { return entry_block_; } |
| 317 HEnvironment* start_environment() const { return start_environment_; } | 317 HEnvironment* start_environment() const { return start_environment_; } |
| 318 | 318 |
| 319 void FinalizeUniqueValueIds(); | 319 void FinalizeUniqueness(); |
| 320 bool ProcessArgumentsObject(); | 320 bool ProcessArgumentsObject(); |
| 321 void OrderBlocks(); | 321 void OrderBlocks(); |
| 322 void AssignDominators(); | 322 void AssignDominators(); |
| 323 void RestoreActualValues(); | 323 void RestoreActualValues(); |
| 324 | 324 |
| 325 // Returns false if there are phi-uses of the arguments-object | 325 // Returns false if there are phi-uses of the arguments-object |
| 326 // which are not supported by the optimizing compiler. | 326 // which are not supported by the optimizing compiler. |
| 327 bool CheckArgumentsPhiUses(); | 327 bool CheckArgumentsPhiUses(); |
| 328 | 328 |
| 329 // Returns false if there are phi-uses of an uninitialized const | 329 // Returns false if there are phi-uses of an uninitialized const |
| (...skipping 2100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2430 } | 2430 } |
| 2431 | 2431 |
| 2432 private: | 2432 private: |
| 2433 HGraphBuilder* builder_; | 2433 HGraphBuilder* builder_; |
| 2434 }; | 2434 }; |
| 2435 | 2435 |
| 2436 | 2436 |
| 2437 } } // namespace v8::internal | 2437 } } // namespace v8::internal |
| 2438 | 2438 |
| 2439 #endif // V8_HYDROGEN_H_ | 2439 #endif // V8_HYDROGEN_H_ |
| OLD | NEW |