| OLD | NEW |
| 1 // Copyright 2009 the V8 project authors. All rights reserved. | 1 // Copyright 2009 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 14 matching lines...) Expand all Loading... |
| 25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 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 "v8.h" | 28 #include "v8.h" |
| 29 | 29 |
| 30 #if defined(V8_TARGET_ARCH_X64) | 30 #if defined(V8_TARGET_ARCH_X64) |
| 31 | 31 |
| 32 #include "serialize.h" | 32 #include "serialize.h" |
| 33 #include "unicode.h" | 33 #include "unicode.h" |
| 34 #include "log.h" | 34 #include "log.h" |
| 35 #include "ast.h" | |
| 36 #include "regexp-stack.h" | 35 #include "regexp-stack.h" |
| 37 #include "macro-assembler.h" | 36 #include "macro-assembler.h" |
| 38 #include "regexp-macro-assembler.h" | 37 #include "regexp-macro-assembler.h" |
| 39 #include "x64/macro-assembler-x64.h" | |
| 40 #include "x64/regexp-macro-assembler-x64.h" | 38 #include "x64/regexp-macro-assembler-x64.h" |
| 41 | 39 |
| 42 namespace v8 { | 40 namespace v8 { |
| 43 namespace internal { | 41 namespace internal { |
| 44 | 42 |
| 45 #ifndef V8_INTERPRETED_REGEXP | 43 #ifndef V8_INTERPRETED_REGEXP |
| 46 | 44 |
| 47 /* | 45 /* |
| 48 * This assembler uses the following register assignment convention | 46 * This assembler uses the following register assignment convention |
| 49 * - rdx : currently loaded character(s) as ASCII or UC16. Must be loaded using | 47 * - rdx : currently loaded character(s) as ASCII or UC16. Must be loaded using |
| (...skipping 1315 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1365 } | 1363 } |
| 1366 } | 1364 } |
| 1367 | 1365 |
| 1368 #undef __ | 1366 #undef __ |
| 1369 | 1367 |
| 1370 #endif // V8_INTERPRETED_REGEXP | 1368 #endif // V8_INTERPRETED_REGEXP |
| 1371 | 1369 |
| 1372 }} // namespace v8::internal | 1370 }} // namespace v8::internal |
| 1373 | 1371 |
| 1374 #endif // V8_TARGET_ARCH_X64 | 1372 #endif // V8_TARGET_ARCH_X64 |
| OLD | NEW |