HomeSort by relevance Sort by last modified time
    Searched refs:BranchFixups (Results 1 - 2 of 2) sorted by null

  /external/clang/lib/CodeGen/
EHScopeStack.h 297 SmallVector<BranchFixup, 8> BranchFixups;
466 BranchFixups.push_back(BranchFixup());
467 return BranchFixups.back();
470 unsigned getNumBranchFixups() const { return BranchFixups.size(); }
473 return BranchFixups[I];
483 void clearFixups() { BranchFixups.clear(); }
CGCleanup.cpp 166 BranchFixups.size(),
190 if (!BranchFixups.empty()) {
194 BranchFixups.clear();
245 assert(BranchFixups.size() >= MinSize && "fixup stack out of order");
247 while (BranchFixups.size() > MinSize &&
248 BranchFixups.back().Destination == nullptr)
249 BranchFixups.pop_back();
    [all...]

Completed in 87 milliseconds