OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:OPN
(Results
1 - 2
of
2
) sorted by null
/external/llvm/lib/Transforms/Utils/
CloneFunction.cpp
421
const PHINode *
OPN
= PHIToResolve[phino];
422
unsigned NumPreds =
OPN
->getNumIncomingValues();
423
const BasicBlock *OldBB =
OPN
->getParent();
430
OPN
= PHIToResolve[phino];
431
PHINode *PN = cast<PHINode>(VMap[
OPN
]);
/external/llvm/lib/Transforms/InstCombine/
InstCombineCasts.cpp
206
PHINode *
OPN
= cast<PHINode>(I);
207
PHINode *NPN = PHINode::Create(Ty,
OPN
->getNumIncomingValues());
208
for (unsigned i = 0, e =
OPN
->getNumIncomingValues(); i != e; ++i) {
209
Value *V =EvaluateInDifferentType(
OPN
->getIncomingValue(i), Ty, isSigned);
210
NPN->addIncoming(V,
OPN
->getIncomingBlock(i));
[
all
...]
Completed in 28 milliseconds