Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions src/coreclr/jit/importercalls.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12502,8 +12502,7 @@ GenTree* Compiler::impArrayAccessIntrinsic(
if (varTypeIsStruct(elemType))
{
JITDUMP("impArrayAccessIntrinsic: rejecting SET array intrinsic because elemType is TYP_STRUCT"
" (implementation limitation)\n",
arrayElemSize);
" (implementation limitation)\n");
return nullptr;
}

Expand Down
2 changes: 1 addition & 1 deletion src/coreclr/jit/importervectorization.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -474,7 +474,7 @@ GenTree* Compiler::impUtf16StringComparison(StringComparisonKind kind, CORINFO_S
{
// check for fake "" first
cnsLength = 0;
JITDUMP("Trying to unroll String.Equals|StartsWith|EndsWith(op1, \"\")...\n", str)
JITDUMP("Trying to unroll String.Equals|StartsWith|EndsWith(op1, \"\")...\n")
}
else
{
Expand Down
4 changes: 2 additions & 2 deletions src/coreclr/jit/inductionvariableopts.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -751,7 +751,7 @@ void Compiler::optReplaceWidenedIV(unsigned lclNum, unsigned ssaNum, unsigned ne
{
gtSetStmtInfo(stmt);
fgSetStmtSeq(stmt);
JITDUMP("New tree:\n", dspTreeID(stmt->GetRootNode()));
JITDUMP("New tree:\n");
DISPTREE(stmt->GetRootNode());
JITDUMP("\n");
}
Expand Down Expand Up @@ -2784,7 +2784,7 @@ bool Compiler::optRemoveUnusedIVs(FlowGraphNaturalLoop* loop, PerLoopInfo* loopI
continue;
}

JITDUMP(" has no essential uses and will be removed\n", lclNum);
JITDUMP(" has no essential uses and will be removed\n");
auto remove = [=](BasicBlock* block, Statement* stmt) {
JITDUMP(" Removing " FMT_STMT "\n", stmt->GetID());
fgRemoveStmt(block, stmt);
Expand Down
2 changes: 1 addition & 1 deletion src/coreclr/jit/lower.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1843,7 +1843,7 @@ void Lowering::SplitArgumentBetweenRegistersAndStack(GenTreeCall* call, CallArg*
{
assert(arg->OperIsLocalRead());

JITDUMP("Argument is a local\n", numRegs, stackSeg.Size);
JITDUMP("Argument is a local\n");

GenTreeLclVarCommon* lcl = arg->AsLclVarCommon();

Expand Down
2 changes: 1 addition & 1 deletion src/coreclr/jit/optimizer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6083,7 +6083,7 @@ PhaseStatus Compiler::optVNBasedDeadStoreRemoval()
// the implicit "live-in" one, which is not guaranteed, but very likely.
if ((defIndex == 1) && !varDsc->TypeIs(TYP_STRUCT))
{
JITDUMP(" -- no; first explicit def of a non-STRUCT local\n", lclNum);
JITDUMP(" -- no; first explicit def of a non-STRUCT local\n");
continue;
}

Expand Down
4 changes: 2 additions & 2 deletions src/coreclr/jit/rangecheck.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2446,7 +2446,7 @@ Range RangeCheck::GetRangeWorker(BasicBlock* block, GenTree* expr, bool monIncre
JITDUMP("[RangeCheck::GetRangeWorker] " FMT_BB " ", block->bbNum);
m_compiler->gtDispTree(expr);
Indent(indent);
JITDUMP("{\n", expr);
JITDUMP("{\n");
}
#endif

Expand All @@ -2461,7 +2461,7 @@ Range RangeCheck::GetRangeWorker(BasicBlock* block, GenTree* expr, bool monIncre
JITDUMP(" %s Range [%06d] => %s\n", (pRange == nullptr) ? "Computed" : "Cached", Compiler::dspTreeID(expr),
range.ToString(m_compiler));
Indent(indent);
JITDUMP("}\n", expr);
JITDUMP("}\n");
}
#endif
return range;
Expand Down
Loading