| OLD | NEW |
| 1 // Copyright 2013 the V8 project authors. All rights reserved. | 1 // Copyright 2013 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 15 matching lines...) Expand all Loading... |
| 26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 27 | 27 |
| 28 #include "hydrogen.h" | 28 #include "hydrogen.h" |
| 29 | 29 |
| 30 #include <algorithm> | 30 #include <algorithm> |
| 31 | 31 |
| 32 #include "v8.h" | 32 #include "v8.h" |
| 33 #include "codegen.h" | 33 #include "codegen.h" |
| 34 #include "full-codegen.h" | 34 #include "full-codegen.h" |
| 35 #include "hashmap.h" | 35 #include "hashmap.h" |
| 36 #include "hydrogen-bce.h" | |
| 37 #include "hydrogen-canonicalize.h" | |
| 38 #include "hydrogen-dce.h" | |
| 39 #include "hydrogen-dehoist.h" | |
| 40 #include "hydrogen-deoptimizing-mark.h" | |
| 41 #include "hydrogen-environment-liveness.h" | |
| 42 #include "hydrogen-escape-analysis.h" | |
| 43 #include "hydrogen-infer-representation.h" | |
| 44 #include "hydrogen-infer-types.h" | |
| 45 #include "hydrogen-gvn.h" | |
| 46 #include "hydrogen-minus-zero.h" | |
| 47 #include "hydrogen-osr.h" | 36 #include "hydrogen-osr.h" |
| 48 #include "hydrogen-range-analysis.h" | 37 #include "hydrogen-phases.h" |
| 49 #include "hydrogen-redundant-phi.h" | |
| 50 #include "hydrogen-removable-simulates.h" | |
| 51 #include "hydrogen-representation-changes.h" | |
| 52 #include "hydrogen-sce.h" | |
| 53 #include "hydrogen-uint32-analysis.h" | |
| 54 #include "lithium-allocator.h" | 38 #include "lithium-allocator.h" |
| 55 #include "parser.h" | 39 #include "parser.h" |
| 56 #include "scopeinfo.h" | 40 #include "scopeinfo.h" |
| 57 #include "scopes.h" | 41 #include "scopes.h" |
| 58 #include "stub-cache.h" | 42 #include "stub-cache.h" |
| 59 #include "typing.h" | 43 #include "typing.h" |
| 60 | 44 |
| 61 #if V8_TARGET_ARCH_IA32 | 45 #if V8_TARGET_ARCH_IA32 |
| 62 #include "ia32/lithium-codegen-ia32.h" | 46 #include "ia32/lithium-codegen-ia32.h" |
| 63 #elif V8_TARGET_ARCH_X64 | 47 #elif V8_TARGET_ARCH_X64 |
| (...skipping 9850 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 9914 if (ShouldProduceTraceOutput()) { | 9898 if (ShouldProduceTraceOutput()) { |
| 9915 isolate()->GetHTracer()->TraceHydrogen(name(), graph_); | 9899 isolate()->GetHTracer()->TraceHydrogen(name(), graph_); |
| 9916 } | 9900 } |
| 9917 | 9901 |
| 9918 #ifdef DEBUG | 9902 #ifdef DEBUG |
| 9919 graph_->Verify(false); // No full verify. | 9903 graph_->Verify(false); // No full verify. |
| 9920 #endif | 9904 #endif |
| 9921 } | 9905 } |
| 9922 | 9906 |
| 9923 } } // namespace v8::internal | 9907 } } // namespace v8::internal |
| OLD | NEW |