@@ -1523,8 +1523,8 @@ TR_VectorAPIExpansion::boxChild(TR::TreeTop *treeTop, TR::Node *node, uint32_t i
1523
1523
1524
1524
if (TR::Options::getVerboseOption (TR_VerboseVectorAPI))
1525
1525
{
1526
- TR_VerboseLog::writeLine (TR_Vlog_VECTOR_API, " Boxed in %s at %s" ,
1527
- comp ()->signature (), comp ()->getHotnessName (comp ()->getMethodHotness ()));
1526
+ TR_VerboseLog::writeLine (TR_Vlog_VECTOR_API, " Boxed %s in %s at %s %s " , objectType == Vector ? " Vector " : " Mask " ,
1527
+ comp ()->signature (), comp ()->getHotnessName (comp ()->getMethodHotness ()), comp ()-> isDLT () ? " DLT " : " " );
1528
1528
}
1529
1529
}
1530
1530
@@ -1599,8 +1599,8 @@ TR_VectorAPIExpansion::unboxNode(TR::Node *parentNode, TR::Node *operand, vapiOb
1599
1599
1600
1600
if (TR::Options::getVerboseOption (TR_VerboseVectorAPI))
1601
1601
{
1602
- TR_VerboseLog::writeLine (TR_Vlog_VECTOR_API, " Unboxed in %s at %s" ,
1603
- comp ()->signature (), comp ()->getHotnessName (comp ()->getMethodHotness ()));
1602
+ TR_VerboseLog::writeLine (TR_Vlog_VECTOR_API, " Unboxed %s in %s at %s %s " , operandObjectType == Vector ? " Vector " : " Mask " ,
1603
+ comp ()->signature (), comp ()->getHotnessName (comp ()->getMethodHotness ()), comp ()-> isDLT () ? " DLT " : " " );
1604
1604
}
1605
1605
1606
1606
return newOperand;
@@ -2345,9 +2345,9 @@ TR::Node *TR_VectorAPIExpansion::transformLoadFromArray(TR_VectorAPIExpansion *o
2345
2345
if (TR::Options::getVerboseOption (TR_VerboseVectorAPI))
2346
2346
{
2347
2347
TR::ILOpCode opcode (op);
2348
- TR_VerboseLog::writeLine (TR_Vlog_VECTOR_API, " Vectorized using %s%s in %s at %s" ,
2348
+ TR_VerboseLog::writeLine (TR_Vlog_VECTOR_API, " Vectorized using %s%s in %s at %s %s " ,
2349
2349
opcode.getName (), TR::DataType::getName (opcode.getVectorResultDataType ()),
2350
- comp->signature (), comp->getHotnessName (comp->getMethodHotness ()));
2350
+ comp->signature (), comp->getHotnessName (comp->getMethodHotness ()), comp-> isDLT () ? " DLT " : " " );
2351
2351
}
2352
2352
}
2353
2353
@@ -2562,9 +2562,9 @@ TR::Node *TR_VectorAPIExpansion::transformStoreToArray(TR_VectorAPIExpansion *op
2562
2562
if (TR::Options::getVerboseOption (TR_VerboseVectorAPI))
2563
2563
{
2564
2564
TR::ILOpCode opcode (op);
2565
- TR_VerboseLog::writeLine (TR_Vlog_VECTOR_API, " Vectorized using %s%s in %s at %s" ,
2565
+ TR_VerboseLog::writeLine (TR_Vlog_VECTOR_API, " Vectorized using %s%s in %s at %s %s " ,
2566
2566
opcode.getName (), TR::DataType::getName (opcode.getVectorResultDataType ()),
2567
- comp->signature (), comp->getHotnessName (comp->getMethodHotness ()));
2567
+ comp->signature (), comp->getHotnessName (comp->getMethodHotness ()), comp-> isDLT () ? " DLT " : " " );
2568
2568
}
2569
2569
}
2570
2570
@@ -2827,9 +2827,9 @@ TR::Node *TR_VectorAPIExpansion::naryIntrinsicHandler(TR_VectorAPIExpansion *opt
2827
2827
if (TR::Options::getVerboseOption (TR_VerboseVectorAPI))
2828
2828
{
2829
2829
TR::ILOpCode opcode (vectorOpCode);
2830
- TR_VerboseLog::writeLine (TR_Vlog_VECTOR_API, " Vectorized using %s%s in %s at %s" ,
2830
+ TR_VerboseLog::writeLine (TR_Vlog_VECTOR_API, " Vectorized using %s%s in %s at %s %s " ,
2831
2831
opcode.getName (), TR::DataType::getName (opcode.getVectorResultDataType ()),
2832
- comp->signature (), comp->getHotnessName (comp->getMethodHotness ()));
2832
+ comp->signature (), comp->getHotnessName (comp->getMethodHotness ()), comp-> isDLT () ? " DLT " : " " );
2833
2833
}
2834
2834
2835
2835
}
@@ -2957,9 +2957,9 @@ TR::Node *TR_VectorAPIExpansion::fromBitsCoercedIntrinsicHandler(TR_VectorAPIExp
2957
2957
if (TR::Options::getVerboseOption (TR_VerboseVectorAPI))
2958
2958
{
2959
2959
TR::ILOpCode opcode (splatsOpCode);
2960
- TR_VerboseLog::writeLine (TR_Vlog_VECTOR_API, " Vectorized using %s%s in %s at %s" , opcode.getName (),
2960
+ TR_VerboseLog::writeLine (TR_Vlog_VECTOR_API, " Vectorized using %s%s in %s at %s %s " , opcode.getName (),
2961
2961
TR::DataType::getName (opcode.getVectorResultDataType ()), comp->signature (),
2962
- comp->getHotnessName (comp->getMethodHotness ()));
2962
+ comp->getHotnessName (comp->getMethodHotness ()), comp-> isDLT () ? " DLT " : " " );
2963
2963
}
2964
2964
}
2965
2965
0 commit comments