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

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

Issue 10386090: Implement loop for global regexps in regexp assembler. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 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
OLDNEW
1 // Copyright 2008 the V8 project authors. All rights reserved. 1 // Copyright 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 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
96 } 96 }
97 97
98 98
99 void RegExpMacroAssemblerTracer::PushBacktrack(Label* label) { 99 void RegExpMacroAssemblerTracer::PushBacktrack(Label* label) {
100 PrintF(" PushBacktrack(label[%08x]);\n", LabelToInt(label)); 100 PrintF(" PushBacktrack(label[%08x]);\n", LabelToInt(label));
101 assembler_->PushBacktrack(label); 101 assembler_->PushBacktrack(label);
102 } 102 }
103 103
104 104
105 void RegExpMacroAssemblerTracer::Succeed() { 105 void RegExpMacroAssemblerTracer::Succeed() {
106 PrintF(" Succeed();\n"); 106 PrintF(" Succeed();%s\n",
107 assembler_->global() ? " [restart for global match]" : "");
107 assembler_->Succeed(); 108 assembler_->Succeed();
108 } 109 }
109 110
110 111
111 void RegExpMacroAssemblerTracer::Fail() { 112 void RegExpMacroAssemblerTracer::Fail() {
112 PrintF(" Fail();\n"); 113 PrintF(" Fail();\n");
113 assembler_->Fail(); 114 assembler_->Fail();
114 } 115 }
115 116
116 117
(...skipping 332 matching lines...) Expand 10 before | Expand all | Expand 10 after
449 return assembler_->Implementation(); 450 return assembler_->Implementation();
450 } 451 }
451 452
452 453
453 Handle<HeapObject> RegExpMacroAssemblerTracer::GetCode(Handle<String> source) { 454 Handle<HeapObject> RegExpMacroAssemblerTracer::GetCode(Handle<String> source) {
454 PrintF(" GetCode(%s);\n", *(source->ToCString())); 455 PrintF(" GetCode(%s);\n", *(source->ToCString()));
455 return assembler_->GetCode(source); 456 return assembler_->GetCode(source);
456 } 457 }
457 458
458 }} // namespace v8::internal 459 }} // namespace v8::internal
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698