HomeSort by relevance Sort by last modified time
    Searched refs:WeightsNode (Results 1 - 6 of 6) sorted by null

  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Analysis/
CFGPrinter.h 157 MDNode *WeightsNode = TI->getMetadata(LLVMContext::MD_prof);
158 if (!WeightsNode)
161 MDString *MDName = cast<MDString>(WeightsNode->getOperand(0));
166 if (OpNo >= WeightsNode->getNumOperands())
169 mdconst::dyn_extract<ConstantInt>(WeightsNode->getOperand(OpNo));
  /external/swiftshader/third_party/LLVM/lib/Transforms/Utils/
LowerExpectIntrinsic.cpp 73 MDNode *WeightsNode = llvm::MDNode::get(Context, Vec);
74 SI->setMetadata(LLVMContext::MD_prof, WeightsNode);
119 MDNode *WeightsNode = MDNode::get(Context, Ops);
120 BI->setMetadata(LLVMContext::MD_prof, WeightsNode);
  /external/swiftshader/third_party/LLVM/lib/Analysis/
BranchProbabilityInfo.cpp 153 MDNode *WeightsNode = TI->getMetadata(LLVMContext::MD_prof);
154 if (!WeightsNode)
159 if (WeightsNode->getNumOperands() != TI->getNumSuccessors() + 1)
168 for (unsigned i = 1, e = WeightsNode->getNumOperands(); i != e; ++i) {
169 ConstantInt *Weight = dyn_cast<ConstantInt>(WeightsNode->getOperand(i));
  /external/llvm/lib/Analysis/
BranchProbabilityInfo.cpp 189 MDNode *WeightsNode = TI->getMetadata(LLVMContext::MD_prof);
190 if (!WeightsNode)
198 if (WeightsNode->getNumOperands() != TI->getNumSuccessors() + 1)
207 for (unsigned i = 1, e = WeightsNode->getNumOperands(); i != e; ++i) {
209 mdconst::dyn_extract<ConstantInt>(WeightsNode->getOperand(i));
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/
BranchProbabilityInfo.cpp 254 MDNode *WeightsNode = TI->getMetadata(LLVMContext::MD_prof);
255 if (!WeightsNode)
263 if (WeightsNode->getNumOperands() != TI->getNumSuccessors() + 1)
274 for (unsigned i = 1, e = WeightsNode->getNumOperands(); i != e; ++i) {
276 mdconst::dyn_extract<ConstantInt>(WeightsNode->getOperand(i));
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Scalar/
JumpThreading.cpp     [all...]

Completed in 1717 milliseconds