| OLD | NEW |
| 1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 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 21 matching lines...) Expand all Loading... |
| 32 | 32 |
| 33 namespace v8 { | 33 namespace v8 { |
| 34 namespace internal { | 34 namespace internal { |
| 35 | 35 |
| 36 RegExpMacroAssemblerTracer::RegExpMacroAssemblerTracer( | 36 RegExpMacroAssemblerTracer::RegExpMacroAssemblerTracer( |
| 37 RegExpMacroAssembler* assembler) : | 37 RegExpMacroAssembler* assembler) : |
| 38 RegExpMacroAssembler(assembler->zone()), | 38 RegExpMacroAssembler(assembler->zone()), |
| 39 assembler_(assembler) { | 39 assembler_(assembler) { |
| 40 unsigned int type = assembler->Implementation(); | 40 unsigned int type = assembler->Implementation(); |
| 41 ASSERT(type < 6); | 41 ASSERT(type < 6); |
| 42 const char* impl_names[] = {"IA32", "ARM", "A64", "MIPS", "X64", "Bytecode"}; | 42 const char* impl_names[] = {"IA32", "ARM", "ARM64", |
| 43 "MIPS", "X64", "Bytecode"}; |
| 43 PrintF("RegExpMacroAssembler%s();\n", impl_names[type]); | 44 PrintF("RegExpMacroAssembler%s();\n", impl_names[type]); |
| 44 } | 45 } |
| 45 | 46 |
| 46 | 47 |
| 47 RegExpMacroAssemblerTracer::~RegExpMacroAssemblerTracer() { | 48 RegExpMacroAssemblerTracer::~RegExpMacroAssemblerTracer() { |
| 48 } | 49 } |
| 49 | 50 |
| 50 | 51 |
| 51 // This is used for printing out debugging information. It makes an integer | 52 // This is used for printing out debugging information. It makes an integer |
| 52 // that is closely related to the address of an object. | 53 // that is closely related to the address of an object. |
| (...skipping 372 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 425 return assembler_->Implementation(); | 426 return assembler_->Implementation(); |
| 426 } | 427 } |
| 427 | 428 |
| 428 | 429 |
| 429 Handle<HeapObject> RegExpMacroAssemblerTracer::GetCode(Handle<String> source) { | 430 Handle<HeapObject> RegExpMacroAssemblerTracer::GetCode(Handle<String> source) { |
| 430 PrintF(" GetCode(%s);\n", source->ToCString().get()); | 431 PrintF(" GetCode(%s);\n", source->ToCString().get()); |
| 431 return assembler_->GetCode(source); | 432 return assembler_->GetCode(source); |
| 432 } | 433 } |
| 433 | 434 |
| 434 }} // namespace v8::internal | 435 }} // namespace v8::internal |
| OLD | NEW |