• Home
  • Raw
  • Download

Lines Matching refs:Insts

684     auto &Insts = PreHeader->getInsts();  in loopInvariantCodeMotion()  local
685 auto &LastInst = Insts.back(); in loopInvariantCodeMotion()
686 Insts.pop_back(); in loopInvariantCodeMotion()
707 CfgVector<std::reference_wrapper<Inst>> Insts(Node->getInsts().begin(), in findLoopInvariantInstructions() local
710 for (auto &InstRef : Insts) { in findLoopInvariantInstructions()
873 auto &Insts = Node->getInsts(); in floatConstantCSE() local
881 Insts.insert(Pair.second[0], Assign); in floatConstantCSE()
890 Insts.insert(Pair.second[0], Assign); in floatConstantCSE()
911 uint32_t CombinedAlignment, InstList &Insts, in sortAndCombineAllocas() argument
973 Insts.push_front(Add); in sortAndCombineAllocas()
980 Insts.push_front(CombinedAlloca); in sortAndCombineAllocas()
993 Insts.push_front(Def); in sortAndCombineAllocas()
1091 InstList &Insts = getEntryNode()->getInsts(); in processAllocas() local
1096 sortAndCombineAllocas(AlignedAllocas, MaxAlignment, Insts, BVT_UserPointer); in processAllocas()
1098 sortAndCombineAllocas(FixedAllocas, StackAlignment, Insts, in processAllocas()
1105 sortAndCombineAllocas(FixedAllocas, MaxAlignment, Insts, BasePointerType); in processAllocas()
1241 CfgVector<const Inst *> *Insts, SizeT I = 0) { in findAllInserts() argument
1244 if (I > Insts->size()) { in findAllInserts()
1251 const auto *LastInsert = Insts->at(I); in findAllInserts()
1254 if (I == Insts->size() - 1) { in findAllInserts()
1261 << Insts->size(); in findAllInserts()
1274 for (const auto *I : reverse_range(*Insts)) { in findAllInserts()
1295 (*Insts)[I]->dump(Func); in findAllInserts()
1314 (*Insts)[I + 1] = Def; in findAllInserts()
1316 return findAllInserts(Func, Ctx, VM, Insts, I + 1); in findAllInserts()
1336 const CfgVector<const Inst *> &Insts, Variable **Src0, in findAllExtracts() argument
1342 assert(Insts.size() > 0); in findAllExtracts()
1343 for (SizeT I = 0; I < Insts.size(); ++I) { in findAllExtracts()
1344 const auto *Insert = Insts.at(I); in findAllExtracts()