| OLD | NEW |
| 1 // Copyright 2006-2009 the V8 project authors. All rights reserved. | 1 // Copyright 2006-2009 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 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 84 fflush(temp_file_); | 84 fflush(temp_file_); |
| 85 rewind(temp_file_); | 85 rewind(temp_file_); |
| 86 return temp_file_; | 86 return temp_file_; |
| 87 } | 87 } |
| 88 | 88 |
| 89 private: | 89 private: |
| 90 static bool init_flags_() { | 90 static bool init_flags_() { |
| 91 i::FLAG_log = true; | 91 i::FLAG_log = true; |
| 92 i::FLAG_prof = true; | 92 i::FLAG_prof = true; |
| 93 i::FLAG_logfile = i::Log::kLogToTemporaryFile; | 93 i::FLAG_logfile = i::Log::kLogToTemporaryFile; |
| 94 i::FLAG_logfile_per_isolate = false; |
| 94 return false; | 95 return false; |
| 95 } | 96 } |
| 96 | 97 |
| 97 const bool saved_log_; | 98 const bool saved_log_; |
| 98 const bool saved_prof_; | 99 const bool saved_prof_; |
| 99 FILE* temp_file_; | 100 FILE* temp_file_; |
| 100 const bool trick_to_run_init_flags_; | 101 const bool trick_to_run_init_flags_; |
| 101 v8::HandleScope scope_; | 102 v8::HandleScope scope_; |
| 102 v8::Handle<v8::Context> env_; | 103 v8::Handle<v8::Context> env_; |
| 103 Logger* logger_; | 104 Logger* logger_; |
| (...skipping 370 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 474 v8::Local<v8::String> s = result->ToString(); | 475 v8::Local<v8::String> s = result->ToString(); |
| 475 i::ScopedVector<char> data(s->Utf8Length() + 1); | 476 i::ScopedVector<char> data(s->Utf8Length() + 1); |
| 476 CHECK_NE(NULL, data.start()); | 477 CHECK_NE(NULL, data.start()); |
| 477 s->WriteUtf8(data.start()); | 478 s->WriteUtf8(data.start()); |
| 478 printf("%s\n", data.start()); | 479 printf("%s\n", data.start()); |
| 479 // Make sure that our output is written prior crash due to CHECK failure. | 480 // Make sure that our output is written prior crash due to CHECK failure. |
| 480 fflush(stdout); | 481 fflush(stdout); |
| 481 CHECK(false); | 482 CHECK(false); |
| 482 } | 483 } |
| 483 } | 484 } |
| OLD | NEW |