HomeSort by relevance Sort by last modified time
    Searched defs:InstInputs (Results 1 - 3 of 3) sorted by null

  /external/llvm/include/llvm/Analysis/
PHITransAddr.h 45 /// InstInputs - The inputs for our symbolic address.
46 SmallVector<Instruction*, 4> InstInputs;
51 InstInputs.push_back(I);
61 for (unsigned i = 0, e = InstInputs.size(); i != e; ++i)
62 if (InstInputs[i]->getParent() == BB)
113 InstInputs.push_back(VI);
  /external/llvm/lib/Analysis/
PHITransAddr.cpp 50 for (unsigned i = 0, e = InstInputs.size(); i != e; ++i)
51 dbgs() << " Input #" << i << " is " << *InstInputs[i] << "\n";
56 SmallVectorImpl<Instruction*> &InstInputs) {
64 std::find(InstInputs.begin(), InstInputs.end(), I);
65 if (Entry != InstInputs.end()) {
66 InstInputs.erase(Entry);
70 // If it isn't in the InstInputs list it is a subexpr incorporated into the
75 llvm_unreachable("Either something is missing from InstInputs or "
81 if (!VerifySubExpr(I->getOperand(i), InstInputs))
    [all...]
  /external/llvm/utils/TableGen/
CodeGenDAGPatterns.cpp     [all...]

Completed in 74 milliseconds