Home
last modified time | relevance | path

Searched refs:TotalVal (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DProfDataUtils.cpp207 bool extractProfTotalWeight(const MDNode *ProfileData, uint64_t &TotalVal) { in extractProfTotalWeight() argument
208 TotalVal = 0; in extractProfTotalWeight()
221 TotalVal += V->getValue().getZExtValue(); in extractProfTotalWeight()
227 TotalVal = mdconst::dyn_extract<ConstantInt>(ProfileData->getOperand(2)) in extractProfTotalWeight()
235 bool extractProfTotalWeight(const Instruction &I, uint64_t &TotalVal) { in extractProfTotalWeight() argument
236 return extractProfTotalWeight(I.getMetadata(LLVMContext::MD_prof), TotalVal); in extractProfTotalWeight()
H A DMetadata.cpp1745 bool Instruction::extractProfTotalWeight(uint64_t &TotalVal) const { in extractProfTotalWeight()
1753 return ::extractProfTotalWeight(*this, TotalVal); in extractProfTotalWeight()
/freebsd/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCISelDAGToDAG.cpp2235 SDValue TotalVal; in SelectAndParts32() local
2237 TotalVal = ANDISVal; in SelectAndParts32()
2239 TotalVal = ANDIVal; in SelectAndParts32()
2241 TotalVal = SDValue(CurDAG->getMachineNode(PPC::OR, dl, MVT::i32, in SelectAndParts32()
2245 Res = TotalVal; in SelectAndParts32()
2248 Res, TotalVal), 0); in SelectAndParts32()
2598 SDValue TotalVal; in SelectAndParts64() local
2617 TotalVal = ANDISVal; in SelectAndParts64()
2619 TotalVal = ANDIVal; in SelectAndParts64()
2621 TotalVal = SDValue(CurDAG->getMachineNode(PPC::OR8, dl, MVT::i64, in SelectAndParts64()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DInstruction.h460 bool extractProfTotalWeight(uint64_t &TotalVal) const;