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

Side by Side Diff: src/mips/regexp-macro-assembler-mips.cc

Issue 6997015: Limit the generation of regexp code with large inlined constants. (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 9 years, 7 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.h ('k') | src/regexp-macro-assembler.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-2010 the V8 project authors. All rights reserved. 1 // Copyright 2006-2010 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 241 matching lines...) Expand 10 before | Expand all | Expand 10 after
252 UNIMPLEMENTED_MIPS(); 252 UNIMPLEMENTED_MIPS();
253 return false; 253 return false;
254 } 254 }
255 255
256 256
257 void RegExpMacroAssemblerMIPS::Fail() { 257 void RegExpMacroAssemblerMIPS::Fail() {
258 UNIMPLEMENTED_MIPS(); 258 UNIMPLEMENTED_MIPS();
259 } 259 }
260 260
261 261
262 Handle<Object> RegExpMacroAssemblerMIPS::GetCode(Handle<String> source) { 262 Handle<HeapObject> RegExpMacroAssemblerMIPS::GetCode(Handle<String> source) {
263 UNIMPLEMENTED_MIPS(); 263 UNIMPLEMENTED_MIPS();
264 return Handle<Object>::null(); 264 return Handle<HeapObject>::null();
265 } 265 }
266 266
267 267
268 void RegExpMacroAssemblerMIPS::GoTo(Label* to) { 268 void RegExpMacroAssemblerMIPS::GoTo(Label* to) {
269 UNIMPLEMENTED_MIPS(); 269 UNIMPLEMENTED_MIPS();
270 } 270 }
271 271
272 272
273 void RegExpMacroAssemblerMIPS::IfRegisterGE(int reg, 273 void RegExpMacroAssemblerMIPS::IfRegisterGE(int reg,
274 int comparand, 274 int comparand,
(...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after
469 } 469 }
470 470
471 471
472 #undef __ 472 #undef __
473 473
474 #endif // V8_INTERPRETED_REGEXP 474 #endif // V8_INTERPRETED_REGEXP
475 475
476 }} // namespace v8::internal 476 }} // namespace v8::internal
477 477
478 #endif // V8_TARGET_ARCH_MIPS 478 #endif // V8_TARGET_ARCH_MIPS
OLDNEW
« no previous file with comments | « src/mips/regexp-macro-assembler-mips.h ('k') | src/regexp-macro-assembler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698