| 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 28 matching lines...) Expand all Loading... |
| 39 #include "parser.h" | 39 #include "parser.h" |
| 40 #include "scopeinfo.h" | 40 #include "scopeinfo.h" |
| 41 #include "scopes.h" | 41 #include "scopes.h" |
| 42 #include "stub-cache.h" | 42 #include "stub-cache.h" |
| 43 #include "typing.h" | 43 #include "typing.h" |
| 44 | 44 |
| 45 #if V8_TARGET_ARCH_IA32 | 45 #if V8_TARGET_ARCH_IA32 |
| 46 #include "ia32/lithium-codegen-ia32.h" | 46 #include "ia32/lithium-codegen-ia32.h" |
| 47 #elif V8_TARGET_ARCH_X64 | 47 #elif V8_TARGET_ARCH_X64 |
| 48 #include "x64/lithium-codegen-x64.h" | 48 #include "x64/lithium-codegen-x64.h" |
| 49 #elif V8_TARGET_ARCH_A64 |
| 50 #include "a64/lithium-codegen-a64.h" |
| 49 #elif V8_TARGET_ARCH_ARM | 51 #elif V8_TARGET_ARCH_ARM |
| 50 #include "arm/lithium-codegen-arm.h" | 52 #include "arm/lithium-codegen-arm.h" |
| 51 #elif V8_TARGET_ARCH_MIPS | 53 #elif V8_TARGET_ARCH_MIPS |
| 52 #include "mips/lithium-codegen-mips.h" | 54 #include "mips/lithium-codegen-mips.h" |
| 53 #else | 55 #else |
| 54 #error Unsupported target architecture. | 56 #error Unsupported target architecture. |
| 55 #endif | 57 #endif |
| 56 | 58 |
| 57 namespace v8 { | 59 namespace v8 { |
| 58 namespace internal { | 60 namespace internal { |
| (...skipping 11557 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 11616 } | 11618 } |
| 11617 } | 11619 } |
| 11618 | 11620 |
| 11619 #ifdef DEBUG | 11621 #ifdef DEBUG |
| 11620 if (graph_ != NULL) graph_->Verify(false); // No full verify. | 11622 if (graph_ != NULL) graph_->Verify(false); // No full verify. |
| 11621 if (allocator_ != NULL) allocator_->Verify(); | 11623 if (allocator_ != NULL) allocator_->Verify(); |
| 11622 #endif | 11624 #endif |
| 11623 } | 11625 } |
| 11624 | 11626 |
| 11625 } } // namespace v8::internal | 11627 } } // namespace v8::internal |
| OLD | NEW |