| 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 "regexp-macro-assembler.h" | 42 #include "regexp-macro-assembler.h" |
| 43 #include "regexp-macro-assembler-tracer.h" | 43 #include "regexp-macro-assembler-tracer.h" |
| 44 #include "regexp-macro-assembler-irregexp.h" | 44 #include "regexp-macro-assembler-irregexp.h" |
| 45 #include "regexp-stack.h" | 45 #include "regexp-stack.h" |
| 46 | 46 |
| 47 #ifndef V8_INTERPRETED_REGEXP | 47 #ifndef V8_INTERPRETED_REGEXP |
| 48 #if V8_TARGET_ARCH_IA32 | 48 #if V8_TARGET_ARCH_IA32 |
| 49 #include "ia32/regexp-macro-assembler-ia32.h" | 49 #include "ia32/regexp-macro-assembler-ia32.h" |
| 50 #elif V8_TARGET_ARCH_X64 | 50 #elif V8_TARGET_ARCH_X64 |
| 51 #include "x64/regexp-macro-assembler-x64.h" | 51 #include "x64/regexp-macro-assembler-x64.h" |
| 52 #elif V8_TARGET_ARCH_A64 | 52 #elif V8_TARGET_ARCH_ARM64 |
| 53 #include "a64/regexp-macro-assembler-a64.h" | 53 #include "arm64/regexp-macro-assembler-arm64.h" |
| 54 #elif V8_TARGET_ARCH_ARM | 54 #elif V8_TARGET_ARCH_ARM |
| 55 #include "arm/regexp-macro-assembler-arm.h" | 55 #include "arm/regexp-macro-assembler-arm.h" |
| 56 #elif V8_TARGET_ARCH_MIPS | 56 #elif V8_TARGET_ARCH_MIPS |
| 57 #include "mips/regexp-macro-assembler-mips.h" | 57 #include "mips/regexp-macro-assembler-mips.h" |
| 58 #else | 58 #else |
| 59 #error Unsupported target architecture. | 59 #error Unsupported target architecture. |
| 60 #endif | 60 #endif |
| 61 #endif | 61 #endif |
| 62 | 62 |
| 63 #include "interpreter-irregexp.h" | 63 #include "interpreter-irregexp.h" |
| (...skipping 6019 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6083 | 6083 |
| 6084 #if V8_TARGET_ARCH_IA32 | 6084 #if V8_TARGET_ARCH_IA32 |
| 6085 RegExpMacroAssemblerIA32 macro_assembler(mode, (data->capture_count + 1) * 2, | 6085 RegExpMacroAssemblerIA32 macro_assembler(mode, (data->capture_count + 1) * 2, |
| 6086 zone); | 6086 zone); |
| 6087 #elif V8_TARGET_ARCH_X64 | 6087 #elif V8_TARGET_ARCH_X64 |
| 6088 RegExpMacroAssemblerX64 macro_assembler(mode, (data->capture_count + 1) * 2, | 6088 RegExpMacroAssemblerX64 macro_assembler(mode, (data->capture_count + 1) * 2, |
| 6089 zone); | 6089 zone); |
| 6090 #elif V8_TARGET_ARCH_ARM | 6090 #elif V8_TARGET_ARCH_ARM |
| 6091 RegExpMacroAssemblerARM macro_assembler(mode, (data->capture_count + 1) * 2, | 6091 RegExpMacroAssemblerARM macro_assembler(mode, (data->capture_count + 1) * 2, |
| 6092 zone); | 6092 zone); |
| 6093 #elif V8_TARGET_ARCH_A64 | 6093 #elif V8_TARGET_ARCH_ARM64 |
| 6094 RegExpMacroAssemblerA64 macro_assembler(mode, (data->capture_count + 1) * 2, | 6094 RegExpMacroAssemblerARM64 macro_assembler(mode, (data->capture_count + 1) * 2, |
| 6095 zone); | 6095 zone); |
| 6096 #elif V8_TARGET_ARCH_MIPS | 6096 #elif V8_TARGET_ARCH_MIPS |
| 6097 RegExpMacroAssemblerMIPS macro_assembler(mode, (data->capture_count + 1) * 2, | 6097 RegExpMacroAssemblerMIPS macro_assembler(mode, (data->capture_count + 1) * 2, |
| 6098 zone); | 6098 zone); |
| 6099 #else | 6099 #else |
| 6100 #error "Unsupported architecture" | 6100 #error "Unsupported architecture" |
| 6101 #endif | 6101 #endif |
| 6102 | 6102 |
| 6103 #else // V8_INTERPRETED_REGEXP | 6103 #else // V8_INTERPRETED_REGEXP |
| 6104 // Interpreted regexp implementation. | 6104 // Interpreted regexp implementation. |
| 6105 EmbeddedVector<byte, 1024> codes; | 6105 EmbeddedVector<byte, 1024> codes; |
| (...skipping 17 matching lines...) Expand all Loading... |
| 6123 } | 6123 } |
| 6124 | 6124 |
| 6125 return compiler.Assemble(¯o_assembler, | 6125 return compiler.Assemble(¯o_assembler, |
| 6126 node, | 6126 node, |
| 6127 data->capture_count, | 6127 data->capture_count, |
| 6128 pattern); | 6128 pattern); |
| 6129 } | 6129 } |
| 6130 | 6130 |
| 6131 | 6131 |
| 6132 }} // namespace v8::internal | 6132 }} // namespace v8::internal |
| OLD | NEW |