OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:InstInputs
(Results
1 - 3
of
3
) sorted by null
/external/llvm/include/llvm/Analysis/
PHITransAddr.h
41
///
InstInputs
- The inputs for our symbolic address.
42
SmallVector<Instruction*, 4>
InstInputs
;
47
InstInputs
.push_back(I);
57
for (unsigned i = 0, e =
InstInputs
.size(); i != e; ++i)
58
if (
InstInputs
[i]->getParent() == BB)
109
InstInputs
.push_back(VI);
/external/llvm/lib/Analysis/
PHITransAddr.cpp
49
for (unsigned i = 0, e =
InstInputs
.size(); i != e; ++i)
50
dbgs() << " Input #" << i << " is " << *
InstInputs
[i] << "\n";
55
SmallVectorImpl<Instruction*> &
InstInputs
) {
63
std::find(
InstInputs
.begin(),
InstInputs
.end(), I);
64
if (Entry !=
InstInputs
.end()) {
65
InstInputs
.erase(Entry);
69
// If it isn't in the
InstInputs
list it is a subexpr incorporated into the
74
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 21 milliseconds