OLD | NEW |
1 // Copyright 2011 the V8 project authors. All rights reserved. | 1 // Copyright 2011 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 1572 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1583 LogEventsAndTags tag = Logger::STUB_TAG; | 1583 LogEventsAndTags tag = Logger::STUB_TAG; |
1584 const char* description = "Unknown code from the snapshot"; | 1584 const char* description = "Unknown code from the snapshot"; |
1585 switch (code_object->kind()) { | 1585 switch (code_object->kind()) { |
1586 case Code::FUNCTION: | 1586 case Code::FUNCTION: |
1587 case Code::OPTIMIZED_FUNCTION: | 1587 case Code::OPTIMIZED_FUNCTION: |
1588 return; // We log this later using LogCompiledFunctions. | 1588 return; // We log this later using LogCompiledFunctions. |
1589 case Code::UNARY_OP_IC: // fall through | 1589 case Code::UNARY_OP_IC: // fall through |
1590 case Code::BINARY_OP_IC: // fall through | 1590 case Code::BINARY_OP_IC: // fall through |
1591 case Code::COMPARE_IC: // fall through | 1591 case Code::COMPARE_IC: // fall through |
1592 case Code::TO_BOOLEAN_IC: // fall through | 1592 case Code::TO_BOOLEAN_IC: // fall through |
1593 case Code::COMPILED_STUB: // fall through | |
1594 case Code::STUB: | 1593 case Code::STUB: |
1595 description = | 1594 description = |
1596 CodeStub::MajorName(CodeStub::GetMajorKey(code_object), true); | 1595 CodeStub::MajorName(CodeStub::GetMajorKey(code_object), true); |
1597 if (description == NULL) | 1596 if (description == NULL) |
1598 description = "A stub from the snapshot"; | 1597 description = "A stub from the snapshot"; |
1599 tag = Logger::STUB_TAG; | 1598 tag = Logger::STUB_TAG; |
1600 break; | 1599 break; |
1601 case Code::BUILTIN: | 1600 case Code::BUILTIN: |
1602 description = "A builtin from the snapshot"; | 1601 description = "A builtin from the snapshot"; |
1603 tag = Logger::BUILTIN_TAG; | 1602 tag = Logger::BUILTIN_TAG; |
(...skipping 289 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1893 profiler_ = NULL; | 1892 profiler_ = NULL; |
1894 } | 1893 } |
1895 | 1894 |
1896 delete ticker_; | 1895 delete ticker_; |
1897 ticker_ = NULL; | 1896 ticker_ = NULL; |
1898 | 1897 |
1899 return log_->Close(); | 1898 return log_->Close(); |
1900 } | 1899 } |
1901 | 1900 |
1902 } } // namespace v8::internal | 1901 } } // namespace v8::internal |
OLD | NEW |