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

  /external/clang/lib/CodeGen/
CGCleanup.cpp 160 BranchFixups.size(),
184 if (!BranchFixups.empty()) {
188 BranchFixups.clear();
239 assert(BranchFixups.size() >= MinSize && "fixup stack out of order");
241 while (BranchFixups.size() > MinSize &&
242 BranchFixups.back().Destination == 0)
243 BranchFixups.pop_back();
    [all...]
CodeGenFunction.h 348 SmallVector<BranchFixup, 8> BranchFixups;
512 BranchFixups.push_back(BranchFixup());
513 return BranchFixups.back();
516 unsigned getNumBranchFixups() const { return BranchFixups.size(); }
519 return BranchFixups[I];
529 void clearFixups() { BranchFixups.clear(); }
    [all...]

Completed in 59 milliseconds