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

Unified Diff: src/IceCfg.cpp

Issue 1775603002: Fix timing of parseFunctions. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Fix nits. Created 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | src/IceCompiler.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/IceCfg.cpp
diff --git a/src/IceCfg.cpp b/src/IceCfg.cpp
index ef8fe901c1f1c5004a37b9476a61417f9f75e529..a44e6b3b4a8a125149150e7ed4326eeaf4e92969 100644
--- a/src/IceCfg.cpp
+++ b/src/IceCfg.cpp
@@ -1027,7 +1027,7 @@ void Cfg::emitJumpTables() {
void Cfg::emit() {
if (!BuildDefs::dump())
return;
- TimerMarker T(TimerStack::TT_emit, this);
+ TimerMarker T(TimerStack::TT_emitAsm, this);
if (Ctx->getFlags().getDecorateAsm()) {
renumberInstructions();
getVMetadata()->init(VMK_Uses);
@@ -1061,7 +1061,7 @@ void Cfg::emit() {
}
void Cfg::emitIAS() {
- TimerMarker T(TimerStack::TT_emit, this);
+ TimerMarker T(TimerStack::TT_emitAsm, this);
// The emitIAS() routines emit into the internal assembler buffer, so there's
// no need to lock the streams.
deleteJumpTableInsts();
« no previous file with comments | « no previous file | src/IceCompiler.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698