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

/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DEHScopeStack.h258 SmallVector<BranchFixup, 8> BranchFixups; member in class:clang::CodeGen::EHScopeStack
397 BranchFixups.push_back(BranchFixup());
398 return BranchFixups.back();
401 unsigned getNumBranchFixups() const { return BranchFixups.size(); }
404 return BranchFixups[I];
414 void clearFixups() { BranchFixups.clear(); }
H A DCGCleanup.cpp189 BranchFixups.size(),
215 if (!BranchFixups.empty()) {
219 BranchFixups.clear();
270 assert(BranchFixups.size() >= MinSize && "fixup stack out of order");
272 while (BranchFixups.size() > MinSize &&
273 BranchFixups.back().Destination == nullptr)
274 BranchFixups.pop_back();

Completed in 186 milliseconds