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

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

Issue 12807: * Fixes and tweaks to regexp-ia32. (Closed)
Patch Set: 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
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 165 matching lines...) Expand 10 before | Expand all | Expand 10 after
176 176
177 177
178 void RegExpMacroAssemblerTracer::CheckCharacter(uc16 c, Label* on_equal) { 178 void RegExpMacroAssemblerTracer::CheckCharacter(uc16 c, Label* on_equal) {
179 PrintF(" CheckCharacter(c='u%04x', label[%08x]);\n", c, on_equal); 179 PrintF(" CheckCharacter(c='u%04x', label[%08x]);\n", c, on_equal);
180 assembler_->CheckCharacter(c, on_equal); 180 assembler_->CheckCharacter(c, on_equal);
181 } 181 }
182 182
183 183
184 void RegExpMacroAssemblerTracer::CheckNotAtStart(Label* on_not_at_start) { 184 void RegExpMacroAssemblerTracer::CheckNotAtStart(Label* on_not_at_start) {
185 PrintF(" CheckNotAtStart(label[%08x]);\n", on_not_at_start); 185 PrintF(" CheckNotAtStart(label[%08x]);\n", on_not_at_start);
186 assembler_->CheckNotAtStart(on_not_at_start);
186 } 187 }
187 188
188 189
189 void RegExpMacroAssemblerTracer::CheckNotCharacter(uc16 c, 190 void RegExpMacroAssemblerTracer::CheckNotCharacter(uc16 c,
190 Label* on_not_equal) { 191 Label* on_not_equal) {
191 PrintF(" CheckNotCharacter(c='u%04x', label[%08x]);\n", c, on_not_equal); 192 PrintF(" CheckNotCharacter(c='u%04x', label[%08x]);\n", c, on_not_equal);
192 assembler_->CheckNotCharacter(c, on_not_equal); 193 assembler_->CheckNotCharacter(c, on_not_equal);
193 } 194 }
194 195
195 196
(...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after
332 return assembler_->Implementation(); 333 return assembler_->Implementation();
333 } 334 }
334 335
335 336
336 Handle<Object> RegExpMacroAssemblerTracer::GetCode() { 337 Handle<Object> RegExpMacroAssemblerTracer::GetCode() {
337 PrintF(" GetCode();\n"); 338 PrintF(" GetCode();\n");
338 return assembler_->GetCode(); 339 return assembler_->GetCode();
339 } 340 }
340 341
341 }} // namespace v8::internal 342 }} // namespace v8::internal
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698