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

Side by Side Diff: src/ast.cc

Issue 12469: * Better factoring of ARM/IA32 code in irregexp. (Closed)
Patch Set: Dropped the unifying ...-native.h file. Created 12 years 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
« no previous file with comments | « src/ast.h ('k') | src/codegen.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 2006-2008 the V8 project authors. All rights reserved. 1 // Copyright 2006-2008 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 177 matching lines...) Expand 10 before | Expand all | Expand 10 after
188 return visitor->Visit##Name(this, data); \ 188 return visitor->Visit##Name(this, data); \
189 } 189 }
190 FOR_EACH_REG_EXP_TREE_TYPE(MAKE_ACCEPT) 190 FOR_EACH_REG_EXP_TREE_TYPE(MAKE_ACCEPT)
191 #undef MAKE_ACCEPT 191 #undef MAKE_ACCEPT
192 192
193 #define MAKE_TYPE_CASE(Name) \ 193 #define MAKE_TYPE_CASE(Name) \
194 RegExp##Name* RegExpTree::As##Name() { \ 194 RegExp##Name* RegExpTree::As##Name() { \
195 return NULL; \ 195 return NULL; \
196 } \ 196 } \
197 bool RegExpTree::Is##Name() { return false; } 197 bool RegExpTree::Is##Name() { return false; }
198 FOR_EACH_REG_EXP_TREE_TYPE(MAKE_TYPE_CASE) 198 FOR_EACH_REG_EXP_TREE_TYPE(MAKE_TYPE_CASE)
199 #undef MAKE_TYPE_CASE 199 #undef MAKE_TYPE_CASE
200 200
201 #define MAKE_TYPE_CASE(Name) \ 201 #define MAKE_TYPE_CASE(Name) \
202 RegExp##Name* RegExp##Name::As##Name() { \ 202 RegExp##Name* RegExp##Name::As##Name() { \
203 return this; \ 203 return this; \
204 } \ 204 } \
205 bool RegExp##Name::Is##Name() { return true; } 205 bool RegExp##Name::Is##Name() { return true; }
206 FOR_EACH_REG_EXP_TREE_TYPE(MAKE_TYPE_CASE) 206 FOR_EACH_REG_EXP_TREE_TYPE(MAKE_TYPE_CASE)
207 #undef MAKE_TYPE_CASE 207 #undef MAKE_TYPE_CASE
208 208
(...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after
374 374
375 375
376 SmartPointer<const char> RegExpTree::ToString() { 376 SmartPointer<const char> RegExpTree::ToString() {
377 RegExpUnparser unparser; 377 RegExpUnparser unparser;
378 Accept(&unparser, NULL); 378 Accept(&unparser, NULL);
379 return unparser.ToString(); 379 return unparser.ToString();
380 } 380 }
381 381
382 382
383 } } // namespace v8::internal 383 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/ast.h ('k') | src/codegen.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698