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

Side by Side Diff: src/regexp-macro-assembler-irregexp.h

Issue 16026020: Remove use of Isolate::Current in regexp macro assemblers. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 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/mips/regexp-macro-assembler-mips.cc ('k') | src/regexp-macro-assembler-irregexp.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 116 matching lines...) Expand 10 before | Expand all | Expand 10 after
127 // The program counter. 127 // The program counter.
128 int pc_; 128 int pc_;
129 // True if the assembler owns the buffer, false if buffer is external. 129 // True if the assembler owns the buffer, false if buffer is external.
130 bool own_buffer_; 130 bool own_buffer_;
131 Label backtrack_; 131 Label backtrack_;
132 132
133 int advance_current_start_; 133 int advance_current_start_;
134 int advance_current_offset_; 134 int advance_current_offset_;
135 int advance_current_end_; 135 int advance_current_end_;
136 136
137 Isolate* isolate_;
138
137 static const int kInvalidPC = -1; 139 static const int kInvalidPC = -1;
138 140
139 DISALLOW_IMPLICIT_CONSTRUCTORS(RegExpMacroAssemblerIrregexp); 141 DISALLOW_IMPLICIT_CONSTRUCTORS(RegExpMacroAssemblerIrregexp);
140 }; 142 };
141 143
142 #endif // V8_INTERPRETED_REGEXP 144 #endif // V8_INTERPRETED_REGEXP
143 145
144 } } // namespace v8::internal 146 } } // namespace v8::internal
145 147
146 #endif // V8_REGEXP_MACRO_ASSEMBLER_IRREGEXP_H_ 148 #endif // V8_REGEXP_MACRO_ASSEMBLER_IRREGEXP_H_
OLDNEW
« no previous file with comments | « src/mips/regexp-macro-assembler-mips.cc ('k') | src/regexp-macro-assembler-irregexp.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698