Home
last modified time | relevance | path

Searched refs:CurrentGroup (Results 1 – 3 of 3) sorted by relevance

/openbsd-src/gnu/llvm/llvm/lib/Transforms/IPO/
H A DIROutliner.cpp2251 Module &M, OutlinableGroup &CurrentGroup, in fillOverallFunction() argument
2255 OutlinableRegion *CurrentOS = CurrentGroup.Regions[0]; in fillOverallFunction()
2260 << *CurrentGroup.OutlinedFunction << "\n"); in fillOverallFunction()
2262 *CurrentGroup.OutlinedFunction, CurrentGroup.EndBBs); in fillOverallFunction()
2266 CurrentGroup.OutlinedFunction->addFnAttr(A); in fillOverallFunction()
2270 createAndInsertBasicBlocks(CurrentGroup.EndBBs, NewBBs, in fillOverallFunction()
2271 CurrentGroup.OutlinedFunction, "output_block_0"); in fillOverallFunction()
2284 CurrentGroup.EndBBs.find(VToBB.first); in fillOverallFunction()
2300 Module &M, OutlinableGroup &CurrentGroup, in deduplicateExtractedSections() argument
2302 createFunction(M, CurrentGroup, OutlinedFunctionNum); in deduplicateExtractedSections()
[all …]
/openbsd-src/gnu/llvm/llvm/include/llvm/Transforms/IPO/
H A DIROutliner.h242 OutlinableGroup &CurrentGroup);
271 InstructionCost findBenefitFromAllRegions(OutlinableGroup &CurrentGroup);
278 InstructionCost findCostOutputReloads(OutlinableGroup &CurrentGroup);
285 void findCostBenefit(Module &M, OutlinableGroup &CurrentGroup);
311 void deduplicateExtractedSections(Module &M, OutlinableGroup &CurrentGroup,
/openbsd-src/gnu/llvm/llvm/utils/TableGen/
H A DGlobalISelEmitter.cpp5566 std::unique_ptr<GroupT> CurrentGroup = std::make_unique<GroupT>(); in optimizeRules() local
5567 assert(CurrentGroup->empty() && "Newly created group isn't empty!"); in optimizeRules()
5571 if (CurrentGroup->empty()) in optimizeRules()
5578 if (CurrentGroup->size() < 2) in optimizeRules()
5579 append_range(OptRules, CurrentGroup->matchers()); in optimizeRules()
5581 CurrentGroup->finalize(); in optimizeRules()
5582 OptRules.push_back(CurrentGroup.get()); in optimizeRules()
5583 MatcherStorage.emplace_back(std::move(CurrentGroup)); in optimizeRules()
5586 CurrentGroup = std::make_unique<GroupT>(); in optimizeRules()
5590 if (CurrentGroup->addMatcher(*Rule)) in optimizeRules()
[all …]