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 293743005: Introduce x87 port (Closed) Base URL: git://github.com/v8/v8.git@master
Patch Set: rebase 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
« no previous file with comments | « src/regexp-macro-assembler.h ('k') | src/simulator.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 {
11 namespace internal { 11 namespace internal {
12 12
13 RegExpMacroAssemblerTracer::RegExpMacroAssemblerTracer( 13 RegExpMacroAssemblerTracer::RegExpMacroAssemblerTracer(
14 RegExpMacroAssembler* assembler) : 14 RegExpMacroAssembler* assembler) :
15 RegExpMacroAssembler(assembler->zone()), 15 RegExpMacroAssembler(assembler->zone()),
16 assembler_(assembler) { 16 assembler_(assembler) {
17 unsigned int type = assembler->Implementation(); 17 unsigned int type = assembler->Implementation();
18 ASSERT(type < 6); 18 ASSERT(type < 6);
19 const char* impl_names[] = {"IA32", "ARM", "ARM64", 19 const char* impl_names[] = {"IA32", "ARM", "ARM64",
20 "MIPS", "X64", "Bytecode"}; 20 "MIPS", "X64", "X87", "Bytecode"};
21 PrintF("RegExpMacroAssembler%s();\n", impl_names[type]); 21 PrintF("RegExpMacroAssembler%s();\n", impl_names[type]);
22 } 22 }
23 23
24 24
25 RegExpMacroAssemblerTracer::~RegExpMacroAssemblerTracer() { 25 RegExpMacroAssemblerTracer::~RegExpMacroAssemblerTracer() {
26 } 26 }
27 27
28 28
29 // This is used for printing out debugging information. It makes an integer 29 // This is used for printing out debugging information. It makes an integer
30 // that is closely related to the address of an object. 30 // that is closely related to the address of an object.
(...skipping 372 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/regexp-macro-assembler.h ('k') | src/simulator.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698