| 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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 #include "runtime.h" | 61 #include "runtime.h" |
| 62 #include "scopeinfo.h" | 62 #include "scopeinfo.h" |
| 63 #include "scopes.h" | 63 #include "scopes.h" |
| 64 #include "stub-cache.h" | 64 #include "stub-cache.h" |
| 65 #include "typing.h" | 65 #include "typing.h" |
| 66 | 66 |
| 67 #if V8_TARGET_ARCH_IA32 | 67 #if V8_TARGET_ARCH_IA32 |
| 68 #include "ia32/lithium-codegen-ia32.h" | 68 #include "ia32/lithium-codegen-ia32.h" |
| 69 #elif V8_TARGET_ARCH_X64 | 69 #elif V8_TARGET_ARCH_X64 |
| 70 #include "x64/lithium-codegen-x64.h" | 70 #include "x64/lithium-codegen-x64.h" |
| 71 #elif V8_TARGET_ARCH_A64 |
| 72 #include "a64/lithium-codegen-a64.h" |
| 71 #elif V8_TARGET_ARCH_ARM | 73 #elif V8_TARGET_ARCH_ARM |
| 72 #include "arm/lithium-codegen-arm.h" | 74 #include "arm/lithium-codegen-arm.h" |
| 73 #elif V8_TARGET_ARCH_MIPS | 75 #elif V8_TARGET_ARCH_MIPS |
| 74 #include "mips/lithium-codegen-mips.h" | 76 #include "mips/lithium-codegen-mips.h" |
| 75 #else | 77 #else |
| 76 #error Unsupported target architecture. | 78 #error Unsupported target architecture. |
| 77 #endif | 79 #endif |
| 78 | 80 |
| 79 namespace v8 { | 81 namespace v8 { |
| 80 namespace internal { | 82 namespace internal { |
| (...skipping 11114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 11195 if (ShouldProduceTraceOutput()) { | 11197 if (ShouldProduceTraceOutput()) { |
| 11196 isolate()->GetHTracer()->TraceHydrogen(name(), graph_); | 11198 isolate()->GetHTracer()->TraceHydrogen(name(), graph_); |
| 11197 } | 11199 } |
| 11198 | 11200 |
| 11199 #ifdef DEBUG | 11201 #ifdef DEBUG |
| 11200 graph_->Verify(false); // No full verify. | 11202 graph_->Verify(false); // No full verify. |
| 11201 #endif | 11203 #endif |
| 11202 } | 11204 } |
| 11203 | 11205 |
| 11204 } } // namespace v8::internal | 11206 } } // namespace v8::internal |
| OLD | NEW |