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

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

Issue 318603002: Fix regexp=interpreted build. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 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 | « no previous file | no next file » | 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 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef V8_REGEXP_MACRO_ASSEMBLER_IRREGEXP_H_ 5 #ifndef V8_REGEXP_MACRO_ASSEMBLER_IRREGEXP_H_
6 #define V8_REGEXP_MACRO_ASSEMBLER_IRREGEXP_H_ 6 #define V8_REGEXP_MACRO_ASSEMBLER_IRREGEXP_H_
7 7
8 #include "src/regexp-macro-assembler.h"
9
8 namespace v8 { 10 namespace v8 {
9 namespace internal { 11 namespace internal {
10 12
11 #ifdef V8_INTERPRETED_REGEXP 13 #ifdef V8_INTERPRETED_REGEXP
12 14
13 class RegExpMacroAssemblerIrregexp: public RegExpMacroAssembler { 15 class RegExpMacroAssemblerIrregexp: public RegExpMacroAssembler {
14 public: 16 public:
15 // Create an assembler. Instructions and relocation information are emitted 17 // Create an assembler. Instructions and relocation information are emitted
16 // into a buffer, with the instructions starting from the beginning and the 18 // into a buffer, with the instructions starting from the beginning and the
17 // relocation information starting from the end of the buffer. See CodeDesc 19 // relocation information starting from the end of the buffer. See CodeDesc
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
116 static const int kInvalidPC = -1; 118 static const int kInvalidPC = -1;
117 119
118 DISALLOW_IMPLICIT_CONSTRUCTORS(RegExpMacroAssemblerIrregexp); 120 DISALLOW_IMPLICIT_CONSTRUCTORS(RegExpMacroAssemblerIrregexp);
119 }; 121 };
120 122
121 #endif // V8_INTERPRETED_REGEXP 123 #endif // V8_INTERPRETED_REGEXP
122 124
123 } } // namespace v8::internal 125 } } // namespace v8::internal
124 126
125 #endif // V8_REGEXP_MACRO_ASSEMBLER_IRREGEXP_H_ 127 #endif // V8_REGEXP_MACRO_ASSEMBLER_IRREGEXP_H_
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698