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

Side by Side Diff: src/stub-cache.cc

Issue 178060: Add code creation logging for construct stubs. (Closed)
Patch Set: Created 11 years, 3 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 1081 matching lines...) Expand 10 before | Expand all | Expand 10 after
1092 Code::Flags flags = Code::ComputeMonomorphicFlags(Code::CALL_IC, 1092 Code::Flags flags = Code::ComputeMonomorphicFlags(Code::CALL_IC,
1093 type, 1093 type,
1094 in_loop_, 1094 in_loop_,
1095 argc); 1095 argc);
1096 return GetCodeWithFlags(flags, name); 1096 return GetCodeWithFlags(flags, name);
1097 } 1097 }
1098 1098
1099 1099
1100 Object* ConstructStubCompiler::GetCode() { 1100 Object* ConstructStubCompiler::GetCode() {
1101 Code::Flags flags = Code::ComputeFlags(Code::STUB); 1101 Code::Flags flags = Code::ComputeFlags(Code::STUB);
1102 return GetCodeWithFlags(flags, "ConstructStub"); 1102 Object* result = GetCodeWithFlags(flags, "ConstructStub");
1103 if (!result->IsFailure()) {
1104 Code* code = Code::cast(result);
1105 USE(code);
1106 LOG(CodeCreateEvent(Logger::STUB_TAG, code, "ConstructStub"));
1107 }
1108 return result;
1103 } 1109 }
1104 1110
1105 1111
1106
1107 } } // namespace v8::internal 1112 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698