HomeSort by: relevance | last modified time | path
    Searched refs:CurrentGroup (Results 1 - 3 of 3) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
IROutliner.cpp 1135 /// \param [in] CurrentGroup - The group of regions to be outlined.
1140 static void fillOverallFunction(Module &M, OutlinableGroup &CurrentGroup,
1143 OutlinableRegion *CurrentOS = CurrentGroup.Regions[0];
1148 << *CurrentGroup.OutlinedFunction << "\n");
1150 CurrentGroup.EndBB = moveFunctionData(*CurrentOS->ExtractedFunction,
1151 *CurrentGroup.OutlinedFunction);
1156 CurrentGroup.OutlinedFunction->addFnAttr(A);
1161 CurrentGroup.OutlinedFunction);
1174 BranchInst::Create(CurrentGroup.EndBB, NewBB);
1187 Module &M, OutlinableGroup &CurrentGroup,
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/IPO/
IROutliner.h 181 /// remaining regions in \p CurrentGroup.
185 /// \param [in,out] CurrentGroup - Contains the potential sections to
189 OutlinableGroup &CurrentGroup);
213 /// OutlinableRegions in \p CurrentGroup.
215 /// \param [in] CurrentGroup - The collection of OutlinableRegions to be
218 InstructionCost findBenefitFromAllRegions(OutlinableGroup &CurrentGroup);
222 /// \param [in] CurrentGroup - The collection of OutlinableRegions to be
225 InstructionCost findCostOutputReloads(OutlinableGroup &CurrentGroup);
227 /// Find the cost and the benefit of \p CurrentGroup and save it back to
228 /// \p CurrentGroup
    [all...]
  /src/external/apache2/llvm/dist/llvm/utils/TableGen/
GlobalISelEmitter.cpp 5483 std::unique_ptr<GroupT> CurrentGroup = std::make_unique<GroupT>();
5484 assert(CurrentGroup->empty() && "Newly created group isn't empty!");
5488 if (CurrentGroup->empty())
5495 if (CurrentGroup->size() < 2)
5496 append_range(OptRules, CurrentGroup->matchers());
5498 CurrentGroup->finalize();
5499 OptRules.push_back(CurrentGroup.get());
5500 MatcherStorage.emplace_back(std::move(CurrentGroup));
5503 CurrentGroup = std::make_unique<GroupT>();
5507 if (CurrentGroup->addMatcher(*Rule)
    [all...]

Completed in 23 milliseconds