| 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 280 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 291 HEnvironment* start_environment() const { return start_environment_; } | 291 HEnvironment* start_environment() const { return start_environment_; } |
| 292 | 292 |
| 293 void FinalizeUniqueValueIds(); | 293 void FinalizeUniqueValueIds(); |
| 294 void InitializeInferredTypes(); | 294 void InitializeInferredTypes(); |
| 295 void InsertTypeConversions(); | 295 void InsertTypeConversions(); |
| 296 void MergeRemovableSimulates(); | 296 void MergeRemovableSimulates(); |
| 297 void InsertRepresentationChanges(); | 297 void InsertRepresentationChanges(); |
| 298 void MarkDeoptimizeOnUndefined(); | 298 void MarkDeoptimizeOnUndefined(); |
| 299 void ComputeMinusZeroChecks(); | 299 void ComputeMinusZeroChecks(); |
| 300 bool ProcessArgumentsObject(); | 300 bool ProcessArgumentsObject(); |
| 301 void EliminateRedundantPhis(); | |
| 302 void Canonicalize(); | 301 void Canonicalize(); |
| 303 void OrderBlocks(); | 302 void OrderBlocks(); |
| 304 void AssignDominators(); | 303 void AssignDominators(); |
| 305 void SetupInformativeDefinitions(); | 304 void SetupInformativeDefinitions(); |
| 306 void EliminateRedundantBoundsChecks(); | 305 void EliminateRedundantBoundsChecks(); |
| 307 void DehoistSimpleArrayIndexComputations(); | 306 void DehoistSimpleArrayIndexComputations(); |
| 308 void RestoreActualValues(); | 307 void RestoreActualValues(); |
| 309 void PropagateDeoptimizingMark(); | 308 void PropagateDeoptimizingMark(); |
| 310 void AnalyzeAndPruneEnvironmentLiveness(); | 309 void AnalyzeAndPruneEnvironmentLiveness(); |
| 311 | 310 |
| (...skipping 1789 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2101 EmbeddedVector<char, 64> filename_; | 2100 EmbeddedVector<char, 64> filename_; |
| 2102 HeapStringAllocator string_allocator_; | 2101 HeapStringAllocator string_allocator_; |
| 2103 StringStream trace_; | 2102 StringStream trace_; |
| 2104 int indent_; | 2103 int indent_; |
| 2105 }; | 2104 }; |
| 2106 | 2105 |
| 2107 | 2106 |
| 2108 } } // namespace v8::internal | 2107 } } // namespace v8::internal |
| 2109 | 2108 |
| 2110 #endif // V8_HYDROGEN_H_ | 2109 #endif // V8_HYDROGEN_H_ |
| OLD | NEW |