Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(390)

Side by Side Diff: src/jsregexp.cc

Issue 149403003: A64: Synchronize with r19234. (Closed) Base URL: https://v8.googlecode.com/svn/branches/experimental/a64
Patch Set: Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « src/isolate.h ('k') | src/list.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 3581 matching lines...) Expand 10 before | Expand all | Expand 10 after
3592 } 3592 }
3593 3593
3594 private: 3594 private:
3595 static const int kAFew = 10; 3595 static const int kAFew = 10;
3596 ZoneList<AlternativeGeneration*> alt_gens_; 3596 ZoneList<AlternativeGeneration*> alt_gens_;
3597 AlternativeGeneration a_few_alt_gens_[kAFew]; 3597 AlternativeGeneration a_few_alt_gens_[kAFew];
3598 }; 3598 };
3599 3599
3600 3600
3601 // The '2' variant is has inclusive from and exclusive to. 3601 // The '2' variant is has inclusive from and exclusive to.
3602 static const int kSpaceRanges[] = { '\t', '\r' + 1, ' ', ' ' + 1, 0x00A0, 3602 // This covers \s as defined in ECMA-262 5.1, 15.10.2.12,
3603 0x00A1, 0x1680, 0x1681, 0x180E, 0x180F, 0x2000, 0x200B, 0x2028, 0x202A, 3603 // which include WhiteSpace (7.2) or LineTerminator (7.3) values.
3604 0x202F, 0x2030, 0x205F, 0x2060, 0x3000, 0x3001, 0xFEFF, 0xFF00, 0x10000 }; 3604 static const int kSpaceRanges[] = { '\t', '\r' + 1, ' ', ' ' + 1,
3605 0x00A0, 0x00A1, 0x1680, 0x1681, 0x180E, 0x180F, 0x2000, 0x200B,
3606 0x2028, 0x202A, 0x202F, 0x2030, 0x205F, 0x2060, 0x3000, 0x3001,
3607 0xFEFF, 0xFF00, 0x10000 };
3605 static const int kSpaceRangeCount = ARRAY_SIZE(kSpaceRanges); 3608 static const int kSpaceRangeCount = ARRAY_SIZE(kSpaceRanges);
3606 3609
3607 static const int kWordRanges[] = { 3610 static const int kWordRanges[] = {
3608 '0', '9' + 1, 'A', 'Z' + 1, '_', '_' + 1, 'a', 'z' + 1, 0x10000 }; 3611 '0', '9' + 1, 'A', 'Z' + 1, '_', '_' + 1, 'a', 'z' + 1, 0x10000 };
3609 static const int kWordRangeCount = ARRAY_SIZE(kWordRanges); 3612 static const int kWordRangeCount = ARRAY_SIZE(kWordRanges);
3610 static const int kDigitRanges[] = { '0', '9' + 1, 0x10000 }; 3613 static const int kDigitRanges[] = { '0', '9' + 1, 0x10000 };
3611 static const int kDigitRangeCount = ARRAY_SIZE(kDigitRanges); 3614 static const int kDigitRangeCount = ARRAY_SIZE(kDigitRanges);
3612 static const int kSurrogateRanges[] = { 0xd800, 0xe000, 0x10000 }; 3615 static const int kSurrogateRanges[] = { 0xd800, 0xe000, 0x10000 };
3613 static const int kSurrogateRangeCount = ARRAY_SIZE(kSurrogateRanges); 3616 static const int kSurrogateRangeCount = ARRAY_SIZE(kSurrogateRanges);
3614 static const int kLineTerminatorRanges[] = { 0x000A, 0x000B, 0x000D, 0x000E, 3617 static const int kLineTerminatorRanges[] = { 0x000A, 0x000B, 0x000D, 0x000E,
(...skipping 2505 matching lines...) Expand 10 before | Expand all | Expand 10 after
6120 } 6123 }
6121 6124
6122 return compiler.Assemble(&macro_assembler, 6125 return compiler.Assemble(&macro_assembler,
6123 node, 6126 node,
6124 data->capture_count, 6127 data->capture_count,
6125 pattern); 6128 pattern);
6126 } 6129 }
6127 6130
6128 6131
6129 }} // namespace v8::internal 6132 }} // namespace v8::internal
OLDNEW
« no previous file with comments | « src/isolate.h ('k') | src/list.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698