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 249 matching lines...) Loading... |
260 void MarkDeoptimizeOnUndefined(); | 260 void MarkDeoptimizeOnUndefined(); |
261 void ComputeMinusZeroChecks(); | 261 void ComputeMinusZeroChecks(); |
262 bool ProcessArgumentsObject(); | 262 bool ProcessArgumentsObject(); |
263 void EliminateRedundantPhis(); | 263 void EliminateRedundantPhis(); |
264 void EliminateUnreachablePhis(); | 264 void EliminateUnreachablePhis(); |
265 void Canonicalize(); | 265 void Canonicalize(); |
266 void OrderBlocks(); | 266 void OrderBlocks(); |
267 void AssignDominators(); | 267 void AssignDominators(); |
268 void ReplaceCheckedValues(); | 268 void ReplaceCheckedValues(); |
269 void EliminateRedundantBoundsChecks(); | 269 void EliminateRedundantBoundsChecks(); |
| 270 void DehoistSimpleArrayIndexComputations(); |
270 void PropagateDeoptimizingMark(); | 271 void PropagateDeoptimizingMark(); |
271 | 272 |
272 // Returns false if there are phi-uses of the arguments-object | 273 // Returns false if there are phi-uses of the arguments-object |
273 // which are not supported by the optimizing compiler. | 274 // which are not supported by the optimizing compiler. |
274 bool CheckArgumentsPhiUses(); | 275 bool CheckArgumentsPhiUses(); |
275 | 276 |
276 // Returns false if there are phi-uses of an uninitialized const | 277 // Returns false if there are phi-uses of an uninitialized const |
277 // which are not supported by the optimizing compiler. | 278 // which are not supported by the optimizing compiler. |
278 bool CheckConstPhiUses(); | 279 bool CheckConstPhiUses(); |
279 | 280 |
(...skipping 1131 matching lines...) Loading... |
1411 const char* filename_; | 1412 const char* filename_; |
1412 HeapStringAllocator string_allocator_; | 1413 HeapStringAllocator string_allocator_; |
1413 StringStream trace_; | 1414 StringStream trace_; |
1414 int indent_; | 1415 int indent_; |
1415 }; | 1416 }; |
1416 | 1417 |
1417 | 1418 |
1418 } } // namespace v8::internal | 1419 } } // namespace v8::internal |
1419 | 1420 |
1420 #endif // V8_HYDROGEN_H_ | 1421 #endif // V8_HYDROGEN_H_ |
OLD | NEW |