Lines Matching defs:Ind
955 if (auto *Ind = dyn_cast<InstrProfValueProfileInst>(I))
956 computeNumValueSiteCounts(Ind);
1034 void InstrLowerer::computeNumValueSiteCounts(InstrProfValueProfileInst *Ind) {
1035 GlobalVariable *Name = Ind->getName();
1036 uint64_t ValueKind = Ind->getValueKind()->getZExtValue();
1037 uint64_t Index = Ind->getIndex()->getZExtValue();
1043 void InstrLowerer::lowerValueProfileInst(InstrProfValueProfileInst *Ind) {
1050 GlobalVariable *Name = Ind->getName();
1056 uint64_t ValueKind = Ind->getValueKind()->getZExtValue();
1057 uint64_t Index = Ind->getIndex()->getZExtValue();
1061 IRBuilder<> Builder(Ind);
1062 bool IsMemOpSize = (Ind->getValueKind()->getZExtValue() ==
1065 auto *TLI = &GetTLI(*Ind->getFunction());
1074 Ind->getOperandBundlesAsDefs(OpBundles);
1076 Value *Args[3] = {Ind->getTargetValue(), NormalizedDataVarPtr,
1081 Value *Args[3] = {Ind->getTargetValue(), NormalizedDataVarPtr,
1089 Ind->replaceAllUsesWith(Call);
1090 Ind->eraseFromParent();