| OLD | NEW |
| 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 Loading... |
| 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 |
| OLD | NEW |