| 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 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 198 } | 198 } |
| 199 | 199 |
| 200 | 200 |
| 201 class PrintablePrinter { | 201 class PrintablePrinter { |
| 202 public: | 202 public: |
| 203 explicit PrintablePrinter(uc16 character) : character_(character) { } | 203 explicit PrintablePrinter(uc16 character) : character_(character) { } |
| 204 | 204 |
| 205 const char* operator*() { | 205 const char* operator*() { |
| 206 if (character_ >= ' ' && character_ <= '~') { | 206 if (character_ >= ' ' && character_ <= '~') { |
| 207 buffer_[0] = '('; | 207 buffer_[0] = '('; |
| 208 buffer_[1] = character_; | 208 buffer_[1] = static_cast<char>(character_); |
| 209 buffer_[2] = ')'; | 209 buffer_[2] = ')'; |
| 210 buffer_[3] = '\0'; | 210 buffer_[3] = '\0'; |
| 211 } else { | 211 } else { |
| 212 buffer_[0] = '\0'; | 212 buffer_[0] = '\0'; |
| 213 } | 213 } |
| 214 return &buffer_[0]; | 214 return &buffer_[0]; |
| 215 }; | 215 }; |
| 216 | 216 |
| 217 private: | 217 private: |
| 218 uc16 character_; | 218 uc16 character_; |
| (...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 449 return assembler_->Implementation(); | 449 return assembler_->Implementation(); |
| 450 } | 450 } |
| 451 | 451 |
| 452 | 452 |
| 453 Handle<HeapObject> RegExpMacroAssemblerTracer::GetCode(Handle<String> source) { | 453 Handle<HeapObject> RegExpMacroAssemblerTracer::GetCode(Handle<String> source) { |
| 454 PrintF(" GetCode(%s);\n", *(source->ToCString())); | 454 PrintF(" GetCode(%s);\n", *(source->ToCString())); |
| 455 return assembler_->GetCode(source); | 455 return assembler_->GetCode(source); |
| 456 } | 456 } |
| 457 | 457 |
| 458 }} // namespace v8::internal | 458 }} // namespace v8::internal |
| OLD | NEW |