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

Side by Side Diff: src/jsregexp.h

Issue 10534139: One Zone per CompilationInfo. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Rename CompilationInfoZone to ZoneWithCompilationInfo Created 8 years, 6 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/json-parser.h ('k') | src/jsregexp.cc » ('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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 83
83 // Prepares a JSRegExp object with Irregexp-specific data. 84 // Prepares a JSRegExp object with Irregexp-specific data.
84 static void IrregexpInitialize(Handle<JSRegExp> re, 85 static void IrregexpInitialize(Handle<JSRegExp> re,
(...skipping 1566 matching lines...) Expand 10 before | Expand all | Expand 10 after
1651 int* vector_; 1652 int* vector_;
1652 int offsets_vector_length_; 1653 int offsets_vector_length_;
1653 1654
1654 friend class ExternalReference; 1655 friend class ExternalReference;
1655 }; 1656 };
1656 1657
1657 1658
1658 } } // namespace v8::internal 1659 } } // namespace v8::internal
1659 1660
1660 #endif // V8_JSREGEXP_H_ 1661 #endif // V8_JSREGEXP_H_
OLDNEW
« no previous file with comments | « src/json-parser.h ('k') | src/jsregexp.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698