Searched refs:TotalVal (Results 1 – 4 of 4) sorted by relevance
/freebsd/contrib/llvm-project/llvm/lib/IR/ |
H A D | ProfDataUtils.cpp | 207 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 D | Metadata.cpp | 1745 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 D | PPCISelDAGToDAG.cpp | 2235 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 D | Instruction.h | 460 bool extractProfTotalWeight(uint64_t &TotalVal) const;
|