@@ -1002,7 +1002,7 @@ void TR_OrderBlocks::addRemainingSuccessorsToListHWProfile(TR::CFGNode *block, T
1002
1002
// pattern: block has goto to fall-through block
1003
1003
// block assumed to end in a goto
1004
1004
// returns TRUE if the pattern was found and replaced
1005
- bool TR_OrderBlocks::peepHoleGotoToFollowing (TR::CFG *cfg, TR::Block *block, TR::Block *followingBlock, char *title)
1005
+ bool TR_OrderBlocks::peepHoleGotoToFollowing (TR::CFG *cfg, TR::Block *block, TR::Block *followingBlock, const char *title)
1006
1006
{
1007
1007
// pattern: block has goto to fall-through block
1008
1008
TR::Node *gotoNode = block->getLastRealTreeTop ()->getNode ();
@@ -1024,7 +1024,7 @@ bool TR_OrderBlocks::peepHoleGotoToFollowing(TR::CFG *cfg, TR::Block *block, TR:
1024
1024
// pattern: block contains goto to a block that only contains a goto
1025
1025
// block assumed to end in a goto
1026
1026
// returns TRUE if the pattern was found and replaced
1027
- bool TR_OrderBlocks::peepHoleGotoToGoto (TR::CFG *cfg, TR::Block *block, TR::Node *gotoNode, TR::Block *destOfGoto, char *title,
1027
+ bool TR_OrderBlocks::peepHoleGotoToGoto (TR::CFG *cfg, TR::Block *block, TR::Node *gotoNode, TR::Block *destOfGoto, const char *title,
1028
1028
TR::BitVector &skippedGotoBlocks)
1029
1029
{
1030
1030
if (comp ()->getProfilingMode () == JitProfiling)
@@ -1066,7 +1066,7 @@ bool TR_OrderBlocks::peepHoleGotoToGoto(TR::CFG *cfg, TR::Block *block, TR::Node
1066
1066
// pattern: block contains a goto to an empty block
1067
1067
// block assumed to end in a goto
1068
1068
// returns TRUE if the pattern was found and replaced
1069
- bool TR_OrderBlocks::peepHoleGotoToEmpty (TR::CFG *cfg, TR::Block *block, TR::Node *gotoNode, TR::Block *destOfGoto, char *title)
1069
+ bool TR_OrderBlocks::peepHoleGotoToEmpty (TR::CFG *cfg, TR::Block *block, TR::Node *gotoNode, TR::Block *destOfGoto, const char *title)
1070
1070
{
1071
1071
if (comp ()->getProfilingMode () == JitProfiling)
1072
1072
return false ;
@@ -1098,7 +1098,7 @@ bool TR_OrderBlocks::peepHoleGotoToEmpty(TR::CFG *cfg, TR::Block *block, TR::Nod
1098
1098
return false ;
1099
1099
}
1100
1100
1101
- static bool peepHoleGotoToLoopHeader (TR::CFG *cfg, TR::Block *block, TR::Block *dest, char *title)
1101
+ static bool peepHoleGotoToLoopHeader (TR::CFG *cfg, TR::Block *block, TR::Block *dest, const char *title)
1102
1102
{
1103
1103
// try to peephole the following:
1104
1104
// dest: loopHeader
@@ -1162,7 +1162,7 @@ static bool peepHoleGotoToLoopHeader(TR::CFG *cfg, TR::Block *block, TR::Block *
1162
1162
// assume block->endsInGoto()
1163
1163
// returns TRUE if block was removed
1164
1164
// currently always returns false because this code can't remove block itself
1165
- void TR_OrderBlocks::peepHoleGotoBlock (TR::CFG *cfg, TR::Block *block, char *title)
1165
+ void TR_OrderBlocks::peepHoleGotoBlock (TR::CFG *cfg, TR::Block *block, const char *title)
1166
1166
{
1167
1167
TR_ASSERT (block->endsInGoto (), " peepHoleGotoBlock called on block that doesn't end in a goto!" );
1168
1168
bool madeAChange;
@@ -1215,7 +1215,7 @@ void TR_OrderBlocks::removeRedundantBranch(TR::CFG *cfg, TR::Block *block, TR::N
1215
1215
}
1216
1216
1217
1217
1218
- bool TR_OrderBlocks::peepHoleBranchToLoopHeader (TR::CFG *cfg, TR::Block *block, TR::Block *fallThrough, TR::Block *dest, char *title)
1218
+ bool TR_OrderBlocks::peepHoleBranchToLoopHeader (TR::CFG *cfg, TR::Block *block, TR::Block *fallThrough, TR::Block *dest, const char *title)
1219
1219
{
1220
1220
bool success = false ;
1221
1221
TR_Structure *destStructure = dest->getStructureOf ();
@@ -1254,9 +1254,9 @@ bool TR_OrderBlocks::peepHoleBranchToLoopHeader(TR::CFG *cfg, TR::Block *block,
1254
1254
}
1255
1255
1256
1256
// apply peephole optimizations to blocks that end in a branch and branch around a single goto
1257
- void TR_OrderBlocks::peepHoleBranchAroundSingleGoto (TR::CFG *cfg, TR::Block *block, char *title)
1257
+ void TR_OrderBlocks::peepHoleBranchAroundSingleGoto (TR::CFG *cfg, TR::Block *block, const char *title)
1258
1258
{
1259
- TR_ASSERT (block->endsInBranch (), " peepHoleBranchBlock called on block that doesn't end in a branch!" );
1259
+ TR_ASSERT (block->endsInBranch (), " peepHoleBranchAroundSingleGoto called on block that doesn't end in a branch!" );
1260
1260
TR::Node *branchNode = block->getLastRealTreeTop ()->getNode ();
1261
1261
TR::TreeTop *takenEntry = branchNode->getBranchDestination ();
1262
1262
TR::Block *takenBlock = takenEntry->getNode ()->getBlock ();
@@ -1328,7 +1328,7 @@ void TR_OrderBlocks::peepHoleBranchAroundSingleGoto(TR::CFG *cfg, TR::Block *blo
1328
1328
// apply peephole optimizations to blocks that end in a branch
1329
1329
// no looping here because there are only two possible optimizations done but we know which order to try them in
1330
1330
// assume block->endsInBranch()
1331
- void TR_OrderBlocks::peepHoleBranchBlock (TR::CFG *cfg, TR::Block *block, char *title)
1331
+ void TR_OrderBlocks::peepHoleBranchBlock (TR::CFG *cfg, TR::Block *block, const char *title)
1332
1332
{
1333
1333
TR_ASSERT (block->endsInBranch (), " peepHoleBranchBlock called on block that doesn't end in a branch!" );
1334
1334
TR::Node *branchNode = block->getLastRealTreeTop ()->getNode ();
@@ -1400,7 +1400,7 @@ void TR_OrderBlocks::peepHoleBranchBlock(TR::CFG *cfg, TR::Block *block, char *t
1400
1400
}
1401
1401
1402
1402
// look for a branch with taken block same as fall-through block
1403
- bool TR_OrderBlocks::peepHoleBranchToFollowing (TR::CFG *cfg, TR::Block *block, TR::Block *followingBlock, char *title)
1403
+ bool TR_OrderBlocks::peepHoleBranchToFollowing (TR::CFG *cfg, TR::Block *block, TR::Block *followingBlock, const char *title)
1404
1404
{
1405
1405
TR_ASSERT (block->endsInBranch (), " peepHoleBranchToFollowing called on block that doesn't end in a branch!" );
1406
1406
TR::Node *branchNode = block->getLastRealTreeTop ()->getNode ();
@@ -1419,7 +1419,7 @@ bool TR_OrderBlocks::peepHoleBranchToFollowing(TR::CFG *cfg, TR::Block *block, T
1419
1419
return false ;
1420
1420
}
1421
1421
1422
- void TR_OrderBlocks::removeEmptyBlock (TR::CFG *cfg, TR::Block *block, char *title)
1422
+ void TR_OrderBlocks::removeEmptyBlock (TR::CFG *cfg, TR::Block *block, const char *title)
1423
1423
{
1424
1424
TR_ASSERT (block->getExceptionPredecessors ().empty (), " removeEmpty block doesn't deal with empty catch blocks properly" );
1425
1425
@@ -1487,7 +1487,7 @@ void TR_OrderBlocks::removeEmptyBlock(TR::CFG *cfg, TR::Block *block, char *titl
1487
1487
// apply a small set of transformations to try to clean up blocks before ordering
1488
1488
// repeatedly apply these transformations until none apply
1489
1489
// returns TRUE if block still exists after peepholing
1490
- bool TR_OrderBlocks::doPeepHoleBlockCorrections (TR::Block *block, char *title)
1490
+ bool TR_OrderBlocks::doPeepHoleBlockCorrections (TR::Block *block, const char *title)
1491
1491
{
1492
1492
TR::CFG *cfg = comp ()->getFlowGraph ();
1493
1493
@@ -1557,7 +1557,7 @@ bool TR_OrderBlocks::doPeepHoleBlockCorrections(TR::Block *block, char *title)
1557
1557
1558
1558
// go through the blocks looking for peephole optimization opportunities
1559
1559
// return TRUE if blocks were removed during the analysis
1560
- bool TR_OrderBlocks::lookForPeepHoleOpportunities (char *title)
1560
+ bool TR_OrderBlocks::lookForPeepHoleOpportunities (const char *title)
1561
1561
{
1562
1562
static bool doPeepHoling=(feGetEnv (" TR_noBlockOrderPeepholing" ) == NULL );
1563
1563
if (!doPeepHoling)
@@ -1586,7 +1586,7 @@ bool TR_OrderBlocks::lookForPeepHoleOpportunities(char *title)
1586
1586
TR::TreeTop *nextBlockTT = block->getExit ()->getNextTreeTop ();
1587
1587
if (trace ()) traceMsg (comp (), " \t Block %d:\n " , block->getNumber ());
1588
1588
1589
- bool blockStillExists = doPeepHoleBlockCorrections (block,title);
1589
+ bool blockStillExists = doPeepHoleBlockCorrections (block, title);
1590
1590
tt = nextBlockTT;
1591
1591
if (!blockStillExists)
1592
1592
blocksWereRemoved = true ;
@@ -2198,7 +2198,7 @@ void checkOrderingConsistency(TR::Compilation *comp)
2198
2198
{
2199
2199
if (seenColdBlock)
2200
2200
{
2201
- char *fmt= " Non-cold block_%d found after a cold block in method %s\n " ;
2201
+ const char *fmt = " Non-cold block_%d found after a cold block in method %s\n " ;
2202
2202
char *buffer = (char *) comp->trMemory ()->allocateStackMemory ((strlen (fmt) + strlen (comp->signature ()) + 15 ) * sizeof (char ));
2203
2203
sprintf (buffer, fmt, block->getNumber (), comp->signature ());
2204
2204
// TR_ASSERT(0, buffer);
@@ -2248,7 +2248,7 @@ void checkOrderingConsistency(TR::Compilation *comp)
2248
2248
}
2249
2249
2250
2250
2251
- void TR_BlockOrderingOptimization::dumpBlockOrdering (TR::TreeTop *tt, char *title)
2251
+ void TR_BlockOrderingOptimization::dumpBlockOrdering (TR::TreeTop *tt, const char *title)
2252
2252
{
2253
2253
traceMsg (comp (), " %s:\n " , title? title : " Block ordering" );
2254
2254
unsigned numberOfColdBlocks = 0 ;
@@ -2289,7 +2289,7 @@ void TR_BlockShuffling::traceBlocks(TR::Block **blocks)
2289
2289
const int32_t BLOCKS_PER_LINE=30 ;
2290
2290
if (trace ())
2291
2291
{
2292
- char *sep = " " ;
2292
+ const char *sep = " " ;
2293
2293
for (int32_t i = 0 ; i < _numBlocks; i++)
2294
2294
{
2295
2295
traceMsg (comp (), " %s%d" , sep, blocks[i]->getNumber ());
0 commit comments