| 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 242 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 253 | 253 |
| 254 Isolate* isolate() const { return isolate_; } | 254 Isolate* isolate() const { return isolate_; } |
| 255 Zone* zone() const { return zone_; } | 255 Zone* zone() const { return zone_; } |
| 256 CompilationInfo* info() const { return info_; } | 256 CompilationInfo* info() const { return info_; } |
| 257 | 257 |
| 258 const ZoneList<HBasicBlock*>* blocks() const { return &blocks_; } | 258 const ZoneList<HBasicBlock*>* blocks() const { return &blocks_; } |
| 259 const ZoneList<HPhi*>* phi_list() const { return phi_list_; } | 259 const ZoneList<HPhi*>* phi_list() const { return phi_list_; } |
| 260 HBasicBlock* entry_block() const { return entry_block_; } | 260 HBasicBlock* entry_block() const { return entry_block_; } |
| 261 HEnvironment* start_environment() const { return start_environment_; } | 261 HEnvironment* start_environment() const { return start_environment_; } |
| 262 | 262 |
| 263 void FinalizeUniqueValueIds(); |
| 263 void InitializeInferredTypes(); | 264 void InitializeInferredTypes(); |
| 264 void InsertTypeConversions(); | 265 void InsertTypeConversions(); |
| 265 void MergeRemovableSimulates(); | 266 void MergeRemovableSimulates(); |
| 266 void InsertRepresentationChanges(); | 267 void InsertRepresentationChanges(); |
| 267 void MarkDeoptimizeOnUndefined(); | 268 void MarkDeoptimizeOnUndefined(); |
| 268 void ComputeMinusZeroChecks(); | 269 void ComputeMinusZeroChecks(); |
| 269 void ComputeSafeUint32Operations(); | 270 void ComputeSafeUint32Operations(); |
| 270 void GlobalValueNumbering(); | 271 void GlobalValueNumbering(); |
| 271 bool ProcessArgumentsObject(); | 272 bool ProcessArgumentsObject(); |
| 272 void EliminateRedundantPhis(); | 273 void EliminateRedundantPhis(); |
| (...skipping 1523 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1796 EmbeddedVector<char, 64> filename_; | 1797 EmbeddedVector<char, 64> filename_; |
| 1797 HeapStringAllocator string_allocator_; | 1798 HeapStringAllocator string_allocator_; |
| 1798 StringStream trace_; | 1799 StringStream trace_; |
| 1799 int indent_; | 1800 int indent_; |
| 1800 }; | 1801 }; |
| 1801 | 1802 |
| 1802 | 1803 |
| 1803 } } // namespace v8::internal | 1804 } } // namespace v8::internal |
| 1804 | 1805 |
| 1805 #endif // V8_HYDROGEN_H_ | 1806 #endif // V8_HYDROGEN_H_ |
| OLD | NEW |