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 1854 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1865 tag = Logger::HANDLER_TAG; | 1865 tag = Logger::HANDLER_TAG; |
1866 break; | 1866 break; |
1867 case Code::KEYED_LOAD_IC: | 1867 case Code::KEYED_LOAD_IC: |
1868 description = "A keyed load IC from the snapshot"; | 1868 description = "A keyed load IC from the snapshot"; |
1869 tag = Logger::KEYED_LOAD_IC_TAG; | 1869 tag = Logger::KEYED_LOAD_IC_TAG; |
1870 break; | 1870 break; |
1871 case Code::LOAD_IC: | 1871 case Code::LOAD_IC: |
1872 description = "A load IC from the snapshot"; | 1872 description = "A load IC from the snapshot"; |
1873 tag = Logger::LOAD_IC_TAG; | 1873 tag = Logger::LOAD_IC_TAG; |
1874 break; | 1874 break; |
| 1875 case Code::CALL_IC: |
| 1876 description = "A call IC from the snapshot"; |
| 1877 tag = Logger::CALL_IC_TAG; |
| 1878 break; |
1875 case Code::STORE_IC: | 1879 case Code::STORE_IC: |
1876 description = "A store IC from the snapshot"; | 1880 description = "A store IC from the snapshot"; |
1877 tag = Logger::STORE_IC_TAG; | 1881 tag = Logger::STORE_IC_TAG; |
1878 break; | 1882 break; |
1879 case Code::KEYED_STORE_IC: | 1883 case Code::KEYED_STORE_IC: |
1880 description = "A keyed store IC from the snapshot"; | 1884 description = "A keyed store IC from the snapshot"; |
1881 tag = Logger::KEYED_STORE_IC_TAG; | 1885 tag = Logger::KEYED_STORE_IC_TAG; |
1882 break; | 1886 break; |
1883 case Code::NUMBER_OF_KINDS: | 1887 case Code::NUMBER_OF_KINDS: |
1884 break; | 1888 break; |
(...skipping 270 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2155 if (jit_logger_) { | 2159 if (jit_logger_) { |
2156 removeCodeEventListener(jit_logger_); | 2160 removeCodeEventListener(jit_logger_); |
2157 delete jit_logger_; | 2161 delete jit_logger_; |
2158 jit_logger_ = NULL; | 2162 jit_logger_ = NULL; |
2159 } | 2163 } |
2160 | 2164 |
2161 return log_->Close(); | 2165 return log_->Close(); |
2162 } | 2166 } |
2163 | 2167 |
2164 } } // namespace v8::internal | 2168 } } // namespace v8::internal |
OLD | NEW |