|
LLVM 24.0.0git
|
Helper to manage IR metadata for recipes. More...
#include "Transforms/Vectorize/VPlan.h"
Public Member Functions | |
| VPIRMetadata ()=default | |
| VPIRMetadata (Instruction &I) | |
Adds metatadata that can be preserved from the original instruction I. | |
| VPIRMetadata (const VPIRMetadata &Other)=default | |
| Copy constructor for cloning. | |
| VPIRMetadata & | operator= (const VPIRMetadata &Other)=default |
| void | applyMetadata (Instruction &I) const |
Add all metadata to I. | |
| void | setMetadata (unsigned Kind, MDNode *Node) |
Set metadata with kind Kind to Node. | |
| void | intersect (const VPIRMetadata &MD) |
Intersect this VPIRMetadata object with MD, keeping only metadata nodes that are common to both. | |
| MDNode * | getMetadata (unsigned Kind) const |
Get metadata of kind Kind. Returns nullptr if not found. | |
| void | setExecutionFrequency (std::optional< VPExecutionFrequency > Freq, LLVMContext &Ctx) |
Record that the recipe executes with frequency Freq, relative to the entry of the loop region. | |
| std::optional< VPExecutionFrequency > | getExecutionFrequency () const |
| Returns the frequency recorded by setExecutionFrequency, if any. | |
| void | clearExecutionFrequency () |
| Drop the frequency recorded by setExecutionFrequency, if any. | |
| MDNode * | getBranchWeights () const |
| Returns the branch weights recorded for this terminator, preferring real profile data over an estimate, or nullptr if there are none. | |
| bool | hasEstimatedBranchWeights () const |
| Returns true if the weights returned by getBranchWeights are estimated. | |
| void | setEstimatedBranchWeights (MDNode *Node) |
Set estimated branch weights to Node. | |
| void | print (raw_ostream &O, VPSlotTracker &SlotTracker) const |
| Print metadata with node IDs. | |
Helper to manage IR metadata for recipes.
It filters out metadata that cannot be propagated.
|
default |
|
inline |
Adds metatadata that can be preserved from the original instruction I.
Definition at line 1221 of file VPlan.h.
References llvm::getMetadataToPropagate(), and I.
|
default |
Copy constructor for cloning.
References llvm::Other, and VPIRMetadata().
| void VPIRMetadata::applyMetadata | ( | Instruction & | I | ) | const |
Add all metadata to I.
Definition at line 2094 of file VPlanRecipes.cpp.
References I.
Referenced by llvm::VPWidenIntrinsicRecipe::createVectorCall(), llvm::VPHistogramRecipe::execute(), llvm::VPInterleaveEVLRecipe::execute(), llvm::VPInterleaveRecipe::execute(), llvm::VPReplicateRecipe::execute(), llvm::VPWidenCallRecipe::execute(), llvm::VPWidenCastRecipe::execute(), llvm::VPWidenLoadEVLRecipe::execute(), llvm::VPWidenLoadRecipe::execute(), llvm::VPWidenRecipe::execute(), llvm::VPWidenStoreEVLRecipe::execute(), llvm::VPWidenStoreRecipe::execute(), and operator=().
| void VPIRMetadata::clearExecutionFrequency | ( | ) |
Drop the frequency recorded by setExecutionFrequency, if any.
Definition at line 2136 of file VPlanRecipes.cpp.
References llvm::erase_if(), and P.
Referenced by getCommonMetadata(), and mergeReplicateRegionsIntoSuccessors().
|
inline |
Returns the branch weights recorded for this terminator, preferring real profile data over an estimate, or nullptr if there are none.
Definition at line 1275 of file VPlan.h.
References getMetadata().
| std::optional< VPExecutionFrequency > VPIRMetadata::getExecutionFrequency | ( | ) | const |
Returns the frequency recorded by setExecutionFrequency, if any.
Definition at line 2130 of file VPlanRecipes.cpp.
References getExecutionFrequencyFromMD().
Referenced by mergeReplicateRegionsIntoSuccessors().
Get metadata of kind Kind. Returns nullptr if not found.
Definition at line 1256 of file VPlan.h.
References llvm::find_if(), and P.
Referenced by getBranchWeights(), and setEstimatedBranchWeights().
|
inline |
| void VPIRMetadata::intersect | ( | const VPIRMetadata & | MD | ) |
Intersect this VPIRMetadata object with MD, keeping only metadata nodes that are common to both.
Definition at line 2143 of file VPlanRecipes.cpp.
References llvm::SmallVectorImpl< T >::emplace_back(), llvm::Other, and VPIRMetadata().
Referenced by llvm::VPlanTransforms::createInterleaveGroups(), and getCommonMetadata().
|
default |
References applyMetadata(), I, llvm::Other, and VPIRMetadata().
| void VPIRMetadata::print | ( | raw_ostream & | O, |
| VPSlotTracker & | SlotTracker ) const |
Print metadata with node IDs.
Definition at line 2157 of file VPlanRecipes.cpp.
References llvm::vputils::AlwaysExecutesFreq, assert(), llvm::ArrayRef< T >::empty(), llvm::extractBranchWeights(), llvm::format(), getExecutionFrequencyFromMD(), llvm::interleaveComma(), Node::printAsOperand(), llvm::ArrayRef< T >::size(), and VPlanPrintMetadata.
|
inline |
Set estimated branch weights to Node.
Definition at line 1286 of file VPlan.h.
References assert(), getMetadata(), and setMetadata().
| void VPIRMetadata::setExecutionFrequency | ( | std::optional< VPExecutionFrequency > | Freq, |
| LLVMContext & | Ctx ) |
Record that the recipe executes with frequency Freq, relative to the entry of the loop region.
Definition at line 2116 of file VPlanRecipes.cpp.
References AbstractManglingParser< Derived, Alloc >::Ops, llvm::vputils::AlwaysExecutesFreq, llvm::ConstantAsMetadata::get(), llvm::MDNode::get(), llvm::Type::getInt64Ty(), llvm::ConstantInt::getTrue(), and setMetadata().
Referenced by mergeReplicateRegionsIntoSuccessors().
Set metadata with kind Kind to Node.
If metadata with Kind already exists, it will be replaced. Otherwise, it will be added.
Definition at line 1240 of file VPlan.h.
References llvm::find_if(), and P.
Referenced by setEstimatedBranchWeights(), and setExecutionFrequency().