Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/llvm/lib/IR/
H A DProfDataUtils.cpp155 bool extractProfTotalWeight(const MDNode *ProfileData, uint64_t &TotalVal) { in extractProfTotalWeight() argument
156 TotalVal = 0; in extractProfTotalWeight()
168 TotalVal += V->getValue().getZExtValue(); in extractProfTotalWeight()
175 TotalVal = mdconst::dyn_extract<ConstantInt>(ProfileData->getOperand(2)) in extractProfTotalWeight()
183 bool extractProfTotalWeight(const Instruction &I, uint64_t &TotalVal) { in extractProfTotalWeight() argument
184 return extractProfTotalWeight(I.getMetadata(LLVMContext::MD_prof), TotalVal); in extractProfTotalWeight()
H A DMetadata.cpp1736 bool Instruction::extractProfTotalWeight(uint64_t &TotalVal) const { in extractProfTotalWeight()
1744 return ::extractProfTotalWeight(*this, TotalVal); in extractProfTotalWeight()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCISelDAGToDAG.cpp2248 SDValue TotalVal; in SelectAndParts32() local
2250 TotalVal = ANDISVal; in SelectAndParts32()
2252 TotalVal = ANDIVal; in SelectAndParts32()
2258 Res = TotalVal; in SelectAndParts32()
2261 Res, TotalVal), 0); in SelectAndParts32()
2611 SDValue TotalVal; in SelectAndParts64() local
2630 TotalVal = ANDISVal; in SelectAndParts64()
2632 TotalVal = ANDIVal; in SelectAndParts64()
2637 TotalVal = SDValue(selectI64Imm(CurDAG, dl, Mask), 0); in SelectAndParts64()
2638 TotalVal = in SelectAndParts64()
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/IR/
H A DInstruction.h435 bool extractProfTotalWeight(uint64_t &TotalVal) const;