Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(907)

Side by Side Diff: src/log.cc

Issue 172523002: Create a function call IC (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Comments addressed. Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« src/ic.cc ('K') | « src/log.h ('k') | src/objects.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 1852 matching lines...) Expand 10 before | Expand all | Expand 10 after
1863 tag = Logger::HANDLER_TAG; 1863 tag = Logger::HANDLER_TAG;
1864 break; 1864 break;
1865 case Code::KEYED_LOAD_IC: 1865 case Code::KEYED_LOAD_IC:
1866 description = "A keyed load IC from the snapshot"; 1866 description = "A keyed load IC from the snapshot";
1867 tag = Logger::KEYED_LOAD_IC_TAG; 1867 tag = Logger::KEYED_LOAD_IC_TAG;
1868 break; 1868 break;
1869 case Code::LOAD_IC: 1869 case Code::LOAD_IC:
1870 description = "A load IC from the snapshot"; 1870 description = "A load IC from the snapshot";
1871 tag = Logger::LOAD_IC_TAG; 1871 tag = Logger::LOAD_IC_TAG;
1872 break; 1872 break;
1873 case Code::CALL_IC:
1874 description = "A call IC from the snapshot";
1875 tag = Logger::CALL_IC_TAG;
1876 break;
1873 case Code::STORE_IC: 1877 case Code::STORE_IC:
1874 description = "A store IC from the snapshot"; 1878 description = "A store IC from the snapshot";
1875 tag = Logger::STORE_IC_TAG; 1879 tag = Logger::STORE_IC_TAG;
1876 break; 1880 break;
1877 case Code::KEYED_STORE_IC: 1881 case Code::KEYED_STORE_IC:
1878 description = "A keyed store IC from the snapshot"; 1882 description = "A keyed store IC from the snapshot";
1879 tag = Logger::KEYED_STORE_IC_TAG; 1883 tag = Logger::KEYED_STORE_IC_TAG;
1880 break; 1884 break;
1881 case Code::NUMBER_OF_KINDS: 1885 case Code::NUMBER_OF_KINDS:
1882 break; 1886 break;
(...skipping 270 matching lines...) Expand 10 before | Expand all | Expand 10 after
2153 if (jit_logger_) { 2157 if (jit_logger_) {
2154 removeCodeEventListener(jit_logger_); 2158 removeCodeEventListener(jit_logger_);
2155 delete jit_logger_; 2159 delete jit_logger_;
2156 jit_logger_ = NULL; 2160 jit_logger_ = NULL;
2157 } 2161 }
2158 2162
2159 return log_->Close(); 2163 return log_->Close();
2160 } 2164 }
2161 2165
2162 } } // namespace v8::internal 2166 } } // namespace v8::internal
OLDNEW
« src/ic.cc ('K') | « src/log.h ('k') | src/objects.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698