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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
42 #include "parser.h" | 42 #include "parser.h" |
43 #include "scopeinfo.h" | 43 #include "scopeinfo.h" |
44 #include "scopes.h" | 44 #include "scopes.h" |
45 #include "stub-cache.h" | 45 #include "stub-cache.h" |
46 #include "typing.h" | 46 #include "typing.h" |
47 | 47 |
48 #if V8_TARGET_ARCH_IA32 | 48 #if V8_TARGET_ARCH_IA32 |
49 #include "ia32/lithium-codegen-ia32.h" | 49 #include "ia32/lithium-codegen-ia32.h" |
50 #elif V8_TARGET_ARCH_X64 | 50 #elif V8_TARGET_ARCH_X64 |
51 #include "x64/lithium-codegen-x64.h" | 51 #include "x64/lithium-codegen-x64.h" |
| 52 #elif V8_TARGET_ARCH_X32 |
| 53 #include "x32/lithium-codegen-x32.h" |
52 #elif V8_TARGET_ARCH_ARM | 54 #elif V8_TARGET_ARCH_ARM |
53 #include "arm/lithium-codegen-arm.h" | 55 #include "arm/lithium-codegen-arm.h" |
54 #elif V8_TARGET_ARCH_MIPS | 56 #elif V8_TARGET_ARCH_MIPS |
55 #include "mips/lithium-codegen-mips.h" | 57 #include "mips/lithium-codegen-mips.h" |
56 #else | 58 #else |
57 #error Unsupported target architecture. | 59 #error Unsupported target architecture. |
58 #endif | 60 #endif |
59 | 61 |
60 namespace v8 { | 62 namespace v8 { |
61 namespace internal { | 63 namespace internal { |
(...skipping 10976 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
11038 if (ShouldProduceTraceOutput()) { | 11040 if (ShouldProduceTraceOutput()) { |
11039 isolate()->GetHTracer()->TraceHydrogen(name(), graph_); | 11041 isolate()->GetHTracer()->TraceHydrogen(name(), graph_); |
11040 } | 11042 } |
11041 | 11043 |
11042 #ifdef DEBUG | 11044 #ifdef DEBUG |
11043 graph_->Verify(false); // No full verify. | 11045 graph_->Verify(false); // No full verify. |
11044 #endif | 11046 #endif |
11045 } | 11047 } |
11046 | 11048 |
11047 } } // namespace v8::internal | 11049 } } // namespace v8::internal |
OLD | NEW |