| 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 244 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 255 | 255 |
| 256 void InitializeInferredTypes(); | 256 void InitializeInferredTypes(); |
| 257 void InsertTypeConversions(); | 257 void InsertTypeConversions(); |
| 258 void InsertRepresentationChanges(); | 258 void InsertRepresentationChanges(); |
| 259 void MarkDeoptimizeOnUndefined(); | 259 void MarkDeoptimizeOnUndefined(); |
| 260 void ComputeMinusZeroChecks(); | 260 void ComputeMinusZeroChecks(); |
| 261 void ComputeSafeUint32Operations(); | 261 void ComputeSafeUint32Operations(); |
| 262 bool ProcessArgumentsObject(); | 262 bool ProcessArgumentsObject(); |
| 263 void EliminateRedundantPhis(); | 263 void EliminateRedundantPhis(); |
| 264 void EliminateUnreachablePhis(); | 264 void EliminateUnreachablePhis(); |
| 265 void OptimizeStringCalls(); |
| 265 void Canonicalize(); | 266 void Canonicalize(); |
| 266 void OrderBlocks(); | 267 void OrderBlocks(); |
| 267 void AssignDominators(); | 268 void AssignDominators(); |
| 268 void ReplaceCheckedValues(); | 269 void ReplaceCheckedValues(); |
| 269 void EliminateRedundantBoundsChecks(); | 270 void EliminateRedundantBoundsChecks(); |
| 270 void DehoistSimpleArrayIndexComputations(); | 271 void DehoistSimpleArrayIndexComputations(); |
| 271 void PropagateDeoptimizingMark(); | 272 void PropagateDeoptimizingMark(); |
| 272 | 273 |
| 273 // Returns false if there are phi-uses of the arguments-object | 274 // Returns false if there are phi-uses of the arguments-object |
| 274 // which are not supported by the optimizing compiler. | 275 // which are not supported by the optimizing compiler. |
| (...skipping 1211 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1486 const char* filename_; | 1487 const char* filename_; |
| 1487 HeapStringAllocator string_allocator_; | 1488 HeapStringAllocator string_allocator_; |
| 1488 StringStream trace_; | 1489 StringStream trace_; |
| 1489 int indent_; | 1490 int indent_; |
| 1490 }; | 1491 }; |
| 1491 | 1492 |
| 1492 | 1493 |
| 1493 } } // namespace v8::internal | 1494 } } // namespace v8::internal |
| 1494 | 1495 |
| 1495 #endif // V8_HYDROGEN_H_ | 1496 #endif // V8_HYDROGEN_H_ |
| OLD | NEW |