OLD | NEW |
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 19 matching lines...) Expand all Loading... |
30 #include "regexp-macro-assembler.h" | 30 #include "regexp-macro-assembler.h" |
31 #include "regexp-macro-assembler-tracer.h" | 31 #include "regexp-macro-assembler-tracer.h" |
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 assembler_(assembler) { | 38 assembler_(assembler) { |
39 unsigned int type = assembler->Implementation(); | 39 unsigned int type = assembler->Implementation(); |
40 ASSERT(type < 4); | 40 ASSERT(type < 5); |
41 const char* impl_names[4] = {"IA32", "ARM", "X64", "Bytecode"}; | 41 const char* impl_names[4] = {"IA32", "ARM", "MIPS", "X64", "Bytecode"}; |
42 PrintF("RegExpMacroAssembler%s();\n", impl_names[type]); | 42 PrintF("RegExpMacroAssembler%s();\n", impl_names[type]); |
43 } | 43 } |
44 | 44 |
45 | 45 |
46 RegExpMacroAssemblerTracer::~RegExpMacroAssemblerTracer() { | 46 RegExpMacroAssemblerTracer::~RegExpMacroAssemblerTracer() { |
47 } | 47 } |
48 | 48 |
49 | 49 |
50 // This is used for printing out debugging information. It makes an integer | 50 // This is used for printing out debugging information. It makes an integer |
51 // that is closely related to the address of an object. | 51 // that is closely related to the address of an object. |
(...skipping 312 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
364 return assembler_->Implementation(); | 364 return assembler_->Implementation(); |
365 } | 365 } |
366 | 366 |
367 | 367 |
368 Handle<HeapObject> RegExpMacroAssemblerTracer::GetCode(Handle<String> source) { | 368 Handle<HeapObject> RegExpMacroAssemblerTracer::GetCode(Handle<String> source) { |
369 PrintF(" GetCode(%s);\n", *(source->ToCString())); | 369 PrintF(" GetCode(%s);\n", *(source->ToCString())); |
370 return assembler_->GetCode(source); | 370 return assembler_->GetCode(source); |
371 } | 371 } |
372 | 372 |
373 }} // namespace v8::internal | 373 }} // namespace v8::internal |
OLD | NEW |