Home
last modified time | relevance | path

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

/external/llvm/lib/CodeGen/AsmPrinter/
DEHStreamer.cpp50 computeActionsTable(const SmallVectorImpl<const LandingPadInfo*> &LandingPads, in computeActionsTable() argument
88 FirstActions.reserve(LandingPads.size()); in computeActionsTable()
95 I = LandingPads.begin(), E = LandingPads.end(); I != E; ++I) { in computeActionsTable()
192 const SmallVectorImpl<const LandingPadInfo *> &LandingPads, in computePadMap() argument
197 for (unsigned i = 0, N = LandingPads.size(); i != N; ++i) { in computePadMap()
198 const LandingPadInfo *LandingPad = LandingPads[i]; in computePadMap()
216 const SmallVectorImpl<const LandingPadInfo *> &LandingPads, in computeCallSiteTable() argument
219 computePadMap(LandingPads, PadMap); in computeCallSiteTable()
254 const LandingPadInfo *LandingPad = LandingPads[P.PadIndex]; in computeCallSiteTable()
345 SmallVector<const LandingPadInfo *, 64> LandingPads; in emitExceptionTable() local
[all …]
DEHStreamer.h79 void computePadMap(const SmallVectorImpl<const LandingPadInfo *> &LandingPads,
/external/llvm/lib/CodeGen/
DMachineModuleInfo.cpp243 LandingPads.clear(); in EndFunction()
288 unsigned N = LandingPads.size(); in getOrCreateLandingPadInfo()
290 LandingPadInfo &LP = LandingPads[i]; in getOrCreateLandingPadInfo()
295 LandingPads.push_back(LandingPadInfo(LandingPad)); in getOrCreateLandingPadInfo()
296 return LandingPads[N]; in getOrCreateLandingPadInfo()
375 for (unsigned i = 0; i != LandingPads.size(); ) { in TidyLandingPads()
376 LandingPadInfo &LandingPad = LandingPads[i]; in TidyLandingPads()
385 LandingPads.erase(LandingPads.begin() + i); in TidyLandingPads()
389 for (unsigned j = 0, e = LandingPads[i].BeginLabels.size(); j != e; ++j) { in TidyLandingPads()
403 if (LandingPads[i].BeginLabels.empty()) { in TidyLandingPads()
[all …]
/external/llvm/include/llvm/CodeGen/
DMachineModuleInfo.h128 std::vector<LandingPadInfo> LandingPads; variable
361 return LandingPads; in getLandingPads()