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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
64 // Implements RegExp.prototype.toString, see ECMA-262 section 15.10.6.4. | 64 // Implements RegExp.prototype.toString, see ECMA-262 section 15.10.6.4. |
65 // This function calls the garbage collector if necessary. | 65 // This function calls the garbage collector if necessary. |
66 static Handle<String> ToString(Handle<Object> value); | 66 static Handle<String> ToString(Handle<Object> value); |
67 | 67 |
68 // Parses the RegExp pattern and prepares the JSRegExp object with | 68 // Parses the RegExp pattern and prepares the JSRegExp object with |
69 // generic data and choice of implementation - as well as what | 69 // generic data and choice of implementation - as well as what |
70 // the implementation wants to store in the data field. | 70 // the implementation wants to store in the data field. |
71 // Returns false if compilation fails. | 71 // Returns false if compilation fails. |
72 static Handle<Object> Compile(Handle<JSRegExp> re, | 72 static Handle<Object> Compile(Handle<JSRegExp> re, |
73 Handle<String> pattern, | 73 Handle<String> pattern, |
74 Handle<String> flags); | 74 Handle<String> flags, |
| 75 Zone* zone); |
75 | 76 |
76 // See ECMA-262 section 15.10.6.2. | 77 // See ECMA-262 section 15.10.6.2. |
77 // This function calls the garbage collector if necessary. | 78 // This function calls the garbage collector if necessary. |
78 static Handle<Object> Exec(Handle<JSRegExp> regexp, | 79 static Handle<Object> Exec(Handle<JSRegExp> regexp, |
79 Handle<String> subject, | 80 Handle<String> subject, |
80 int index, | 81 int index, |
81 Handle<JSArray> lastMatchInfo, | 82 Handle<JSArray> lastMatchInfo, |
82 Zone* zone); | 83 Zone* zone); |
83 | 84 |
84 // Prepares a JSRegExp object with Irregexp-specific data. | 85 // Prepares a JSRegExp object with Irregexp-specific data. |
(...skipping 1572 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1657 int* vector_; | 1658 int* vector_; |
1658 int offsets_vector_length_; | 1659 int offsets_vector_length_; |
1659 | 1660 |
1660 friend class ExternalReference; | 1661 friend class ExternalReference; |
1661 }; | 1662 }; |
1662 | 1663 |
1663 | 1664 |
1664 } } // namespace v8::internal | 1665 } } // namespace v8::internal |
1665 | 1666 |
1666 #endif // V8_JSREGEXP_H_ | 1667 #endif // V8_JSREGEXP_H_ |
OLD | NEW |