Skip to content

Commit

Permalink
Using older jit-format.bat on backup machine
Browse files Browse the repository at this point in the history
  • Loading branch information
alexcovington committed Sep 22, 2021
1 parent 39c3f2f commit b0e0817
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion src/coreclr/jit/flowgraph.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4134,7 +4134,7 @@ void Compiler::fgSetTreeSeqHelper(GenTree* tree, bool isLIR)
#endif // FEATURE_SIMD
#ifdef FEATURE_HW_INTRINSICS
case GT_HW_INTRINSIC_CHK:
#endif // FEATURE_HW_INTRINSICS
#endif // FEATURE_HW_INTRINSICS
// Evaluate the trees left to right
fgSetTreeSeqHelper(tree->AsBoundsChk()->gtIndex, isLIR);
fgSetTreeSeqHelper(tree->AsBoundsChk()->gtArrLen, isLIR);
Expand Down
2 changes: 1 addition & 1 deletion src/coreclr/jit/jiteh.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4443,7 +4443,7 @@ void Compiler::fgExtendEHRegionBefore(BasicBlock* block)
printf("EH#%u: Updating bbJumpDest for filter ret block: " FMT_BB " => " FMT_BB "\n",
ehGetIndex(HBtab), bFilterLast->bbNum, bPrev->bbNum);
}
#endif // DEBUG
#endif // DEBUG
// Change the bbJumpDest for bFilterLast from the old first 'block' to the new first 'bPrev'
bFilterLast->bbJumpDest = bPrev;
}
Expand Down
10 changes: 5 additions & 5 deletions src/coreclr/jit/liveness.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2084,7 +2084,7 @@ void Compiler::fgComputeLifeLIR(VARSET_TP& life, BasicBlock* block, VARSET_VALAR
case GT_KEEPALIVE:
#ifdef FEATURE_HW_INTRINSICS
case GT_HWINTRINSIC:
#endif // FEATURE_HW_INTRINSICS
#endif // FEATURE_HW_INTRINSICS
// Never remove these nodes, as they are always side-effecting.
//
// NOTE: the only side-effect of some of these nodes (GT_CMP, GT_SUB_HI) is a write to the flags
Expand Down Expand Up @@ -2339,7 +2339,7 @@ bool Compiler::fgRemoveDeadStore(GenTree** pTree,
gtDispTree(asgNode);
printf("\n");
}
#endif // DEBUG
#endif // DEBUG
// Extract the side effects
gtExtractSideEffList(rhsNode, &sideEffList);
}
Expand Down Expand Up @@ -2371,7 +2371,7 @@ bool Compiler::fgRemoveDeadStore(GenTree** pTree,
compCurStmt->SetRootNode(sideEffList);
#ifdef DEBUG
*treeModf = true;
#endif // DEBUG
#endif // DEBUG
// Update ordering, costs, FP levels, etc.
gtSetStmtInfo(compCurStmt);

Expand Down Expand Up @@ -2445,7 +2445,7 @@ bool Compiler::fgRemoveDeadStore(GenTree** pTree,
{
#ifdef DEBUG
*treeModf = true;
#endif // DEBUG
#endif // DEBUG
// Change the node to a GT_COMMA holding the side effect list
asgNode->gtBashToNOP();

Expand Down Expand Up @@ -2475,7 +2475,7 @@ bool Compiler::fgRemoveDeadStore(GenTree** pTree,
gtDispTree(asgNode);
printf("\n");
}
#endif // DEBUG
#endif // DEBUG
// No side effects - Change the assignment to a GT_NOP node
asgNode->gtBashToNOP();

Expand Down
4 changes: 2 additions & 2 deletions src/coreclr/jit/lower.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3567,7 +3567,7 @@ void Lowering::LowerCallStruct(GenTreeCall* call)
user->ChangeType(returnType);
break;
}
#endif // FEATURE_SIMD
#endif // FEATURE_SIMD
// importer has a separate mechanism to retype calls to helpers,
// keep it for now.
assert(user->TypeIs(TYP_REF) || (user->TypeIs(TYP_I_IMPL) && comp->IsTargetAbi(CORINFO_CORERT_ABI)));
Expand Down Expand Up @@ -6488,7 +6488,7 @@ void Lowering::ContainCheckNode(GenTree* node)
case GT_PUTARG_STK:
#if FEATURE_ARG_SPLIT
case GT_PUTARG_SPLIT:
#endif // FEATURE_ARG_SPLIT
#endif // FEATURE_ARG_SPLIT
// The regNum must have been set by the lowering of the call.
assert(node->GetRegNum() != REG_NA);
break;
Expand Down
2 changes: 1 addition & 1 deletion src/coreclr/jit/morph.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3599,7 +3599,7 @@ void Compiler::fgInitArgInfo(GenTreeCall* call)
// Whenever we pass an integer register argument
// we skip the corresponding floating point register argument
intArgRegNum = min(intArgRegNum + size, MAX_REG_ARG);
#endif // WINDOWS_AMD64_ABI
#endif // WINDOWS_AMD64_ABI
// No supported architecture supports partial structs using float registers.
assert(fltArgRegNum <= MAX_FLOAT_REG_ARG);
}
Expand Down

0 comments on commit b0e0817

Please sign in to comment.