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

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

Issue 277913002: Presubmit checks recover. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Rebasing Created 6 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/preparse-data.h ('k') | src/x64/assembler-x64.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 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 #include "v8.h" 5 #include "v8.h"
6 #include "ast.h" 6 #include "ast.h"
7 #include "regexp-macro-assembler.h" 7 #include "regexp-macro-assembler.h"
8 #include "regexp-macro-assembler-tracer.h" 8 #include "regexp-macro-assembler-tracer.h"
9 9
10 namespace v8 { 10 namespace v8 {
(...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after
185 const char* operator*() { 185 const char* operator*() {
186 if (character_ >= ' ' && character_ <= '~') { 186 if (character_ >= ' ' && character_ <= '~') {
187 buffer_[0] = '('; 187 buffer_[0] = '(';
188 buffer_[1] = static_cast<char>(character_); 188 buffer_[1] = static_cast<char>(character_);
189 buffer_[2] = ')'; 189 buffer_[2] = ')';
190 buffer_[3] = '\0'; 190 buffer_[3] = '\0';
191 } else { 191 } else {
192 buffer_[0] = '\0'; 192 buffer_[0] = '\0';
193 } 193 }
194 return &buffer_[0]; 194 return &buffer_[0];
195 }; 195 }
196 196
197 private: 197 private:
198 uc16 character_; 198 uc16 character_;
199 char buffer_[4]; 199 char buffer_[4];
200 }; 200 };
201 201
202 202
203 void RegExpMacroAssemblerTracer::CheckCharacterLT(uc16 limit, Label* on_less) { 203 void RegExpMacroAssemblerTracer::CheckCharacterLT(uc16 limit, Label* on_less) {
204 PrintablePrinter printable(limit); 204 PrintablePrinter printable(limit);
205 PrintF(" CheckCharacterLT(c=0x%04x%s, label[%08x]);\n", 205 PrintF(" CheckCharacterLT(c=0x%04x%s, label[%08x]);\n",
(...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after
403 return assembler_->Implementation(); 403 return assembler_->Implementation();
404 } 404 }
405 405
406 406
407 Handle<HeapObject> RegExpMacroAssemblerTracer::GetCode(Handle<String> source) { 407 Handle<HeapObject> RegExpMacroAssemblerTracer::GetCode(Handle<String> source) {
408 PrintF(" GetCode(%s);\n", source->ToCString().get()); 408 PrintF(" GetCode(%s);\n", source->ToCString().get());
409 return assembler_->GetCode(source); 409 return assembler_->GetCode(source);
410 } 410 }
411 411
412 }} // namespace v8::internal 412 }} // namespace v8::internal
OLDNEW
« no previous file with comments | « src/preparse-data.h ('k') | src/x64/assembler-x64.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698