| 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 409 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 420 } | 420 } |
| 421 | 421 |
| 422 | 422 |
| 423 RegExpMacroAssembler::IrregexpImplementation | 423 RegExpMacroAssembler::IrregexpImplementation |
| 424 RegExpMacroAssemblerTracer::Implementation() { | 424 RegExpMacroAssemblerTracer::Implementation() { |
| 425 return assembler_->Implementation(); | 425 return assembler_->Implementation(); |
| 426 } | 426 } |
| 427 | 427 |
| 428 | 428 |
| 429 Handle<HeapObject> RegExpMacroAssemblerTracer::GetCode(Handle<String> source) { | 429 Handle<HeapObject> RegExpMacroAssemblerTracer::GetCode(Handle<String> source) { |
| 430 PrintF(" GetCode(%s);\n", *(source->ToCString())); | 430 PrintF(" GetCode(%s);\n", source->ToCString().get()); |
| 431 return assembler_->GetCode(source); | 431 return assembler_->GetCode(source); |
| 432 } | 432 } |
| 433 | 433 |
| 434 }} // namespace v8::internal | 434 }} // namespace v8::internal |
| OLD | NEW |