Home
last modified time | relevance | path

Searched refs:LIs (Results 1 – 4 of 4) sorted by relevance

/llvm-project-15.0.7/llvm/lib/CodeGen/
H A DInterleavedLoadCombinePass.cpp663 std::set<LoadInst *> LIs; member
765 Result.LIs.insert(Old.LIs.begin(), Old.LIs.end()); in computeFromBCI()
824 Result.LIs.insert(LHS.LIs.begin(), LHS.LIs.end()); in computeFromSVI()
828 Result.LIs.insert(RHS.LIs.begin(), RHS.LIs.end()); in computeFromSVI()
882 Result.LIs.insert(LI); in computeFromLI()
1106 *BB, [&LIs](Instruction &I) -> bool { return is_contained(LIs, &I); }); in findFirstLoad()
1125 std::set<LoadInst *> LIs; in combine() local
1139 LIs.insert(VI.LIs.begin(), VI.LIs.end()); in combine()
1151 if (LIs.size() < 2) in combine()
1179 LoadInst *First = findFirstLoad(LIs); in combine()
[all …]
H A DLiveDebugVariables.cpp1112 SmallDenseMap<unsigned, std::pair<LiveRange *, const VNInfo *>> LIs; in computeIntervals() local
1129 LIs[LocNo] = {LI, VNI}; in computeIntervals()
1133 extendDef(Idx, DbgValue, LIs, Kills, LIS); in computeIntervals()
/llvm-project-15.0.7/llvm/lib/Target/AArch64/
H A DAArch64PBQPRegAlloc.cpp163 LiveIntervals &LIs = G.getMetadata().LIS; in addIntraChainConstraint() local
186 const LiveInterval &ld = LIs.getInterval(Rd); in addIntraChainConstraint()
187 const LiveInterval &la = LIs.getInterval(Ra); in addIntraChainConstraint()
244 LiveIntervals &LIs = G.getMetadata().LIS; in addInterChainConstraint() local
262 const LiveInterval &ld = LIs.getInterval(Rd); in addInterChainConstraint()
268 const LiveInterval &lr = LIs.getInterval(r); in addInterChainConstraint()
319 static bool regJustKilledBefore(const LiveIntervals &LIs, unsigned reg, in regJustKilledBefore() argument
321 const LiveInterval &LI = LIs.getInterval(reg); in regJustKilledBefore()
322 SlotIndex SI = LIs.getInstructionIndex(MI); in regJustKilledBefore()
328 LiveIntervals &LIs = G.getMetadata().LIS; in apply() local
[all …]
/llvm-project-15.0.7/llvm/lib/Analysis/
H A DMustExecute.cpp364 SmallVector<std::unique_ptr<LoopInfo>, 8> LIs; in runOnModule() local
368 LIs.push_back(std::make_unique<LoopInfo>(*DTs.back())); in runOnModule()
369 return LIs.back().get(); in runOnModule()