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

Side by Side Diff: src/log.cc

Issue 13728002: Add an IC for CompareNil operations (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Fix SunSpider regression Created 7 years, 8 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
« no previous file with comments | « src/isolate.cc ('k') | src/mips/lithium-mips.cc » ('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 1571 matching lines...) Expand 10 before | Expand all | Expand 10 after
1582 Code* code_object = Code::cast(object); 1582 Code* code_object = Code::cast(object);
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::COMPARE_NIL_IC: // fall through
1592 case Code::TO_BOOLEAN_IC: // fall through 1593 case Code::TO_BOOLEAN_IC: // fall through
1593 case Code::STUB: 1594 case Code::STUB:
1594 description = 1595 description =
1595 CodeStub::MajorName(CodeStub::GetMajorKey(code_object), true); 1596 CodeStub::MajorName(CodeStub::GetMajorKey(code_object), true);
1596 if (description == NULL) 1597 if (description == NULL)
1597 description = "A stub from the snapshot"; 1598 description = "A stub from the snapshot";
1598 tag = Logger::STUB_TAG; 1599 tag = Logger::STUB_TAG;
1599 break; 1600 break;
1600 case Code::BUILTIN: 1601 case Code::BUILTIN:
1601 description = "A builtin from the snapshot"; 1602 description = "A builtin from the snapshot";
(...skipping 290 matching lines...) Expand 10 before | Expand all | Expand 10 after
1892 profiler_ = NULL; 1893 profiler_ = NULL;
1893 } 1894 }
1894 1895
1895 delete ticker_; 1896 delete ticker_;
1896 ticker_ = NULL; 1897 ticker_ = NULL;
1897 1898
1898 return log_->Close(); 1899 return log_->Close();
1899 } 1900 }
1900 1901
1901 } } // namespace v8::internal 1902 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/isolate.cc ('k') | src/mips/lithium-mips.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698