Searched refs:FoldInst (Results 1 - 2 of 2) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DFastISel.h283 /// We're checking to see if we can fold \p LI into \p FoldInst. Note
291 /// In this scenario, \p LI is "A", and \p FoldInst is "C". We know about "B"
295 bool tryToFoldLoad(const LoadInst *LI, const Instruction *FoldInst);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DFastISel.cpp2375 bool FastISel::tryToFoldLoad(const LoadInst *LI, const Instruction *FoldInst) { argument
2380 // this by scanning the single-use users of the load until we get to FoldInst.
2384 while (TheUser != FoldInst && // Scan up until we find FoldInst.
2386 TheUser->getParent() == FoldInst->getParent() &&
2397 if (TheUser != FoldInst)

Completed in 100 milliseconds