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 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 == 0)
249 BranchFixups.pop_back();
    [all...]
CodeGenFunction.h 359 SmallVector<BranchFixup, 8> BranchFixups;
523 BranchFixups.push_back(BranchFixup());
524 return BranchFixups.back();
527 unsigned getNumBranchFixups() const { return BranchFixups.size(); }
530 return BranchFixups[I];
540 void clearFixups() { BranchFixups.clear(); }
    [all...]

Completed in 44 milliseconds