Home
last modified time | relevance | path

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

/external/swiftshader/third_party/LLVM/lib/VMCore/
DAutoUpgrade.cpp553 DenseMap<Function*, std::pair<Value*, Value*> > FnToLPadSlotMap; in UpgradeExceptionHandling() local
568 if (!FnToLPadSlotMap[F].first) { in UpgradeExceptionHandling()
572 FnToLPadSlotMap[F] = std::make_pair(ExnSlot, SelSlot); in UpgradeExceptionHandling()
574 ExnSlot = FnToLPadSlotMap[F].first; in UpgradeExceptionHandling()
575 SelSlot = FnToLPadSlotMap[F].second; in UpgradeExceptionHandling()
624 std::pair<Value*,Value*> ExnSelSlots = FnToLPadSlotMap[Parent->getParent()]; in UpgradeExceptionHandling()