OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:IDom
(Results
1 - 6
of
6
) sorted by null
/external/llvm/include/llvm/Transforms/Utils/
SSAUpdaterImpl.h
49
BBInfo *
IDom
; // Immediate dominator.
55
: BB(ThisBB), AvailableVal(V), DefBB(V ? this : 0), BlkNum(0),
IDom
(0),
157
Info->
IDom
= PseudoEntry;
203
Blk1 = Blk1->
IDom
;
208
Blk2 = Blk2->
IDom
;
255
// Check if the
IDom
value has changed.
256
if (NewIDom && NewIDom != Info->
IDom
) {
257
Info->
IDom
= NewIDom;
264
/// IsDefInDomFrontier - Search up the dominator tree from Pred to
IDom
for
268
bool IsDefInDomFrontier(const BBInfo *Pred, const BBInfo *
IDom
) {
[
all
...]
/external/llvm/include/llvm/Analysis/
Dominators.h
66
DomTreeNodeBase<NodeT> *
IDom
;
83
DomTreeNodeBase<NodeT> *getIDom() const { return
IDom
; }
88
DomTreeNodeBase(NodeT *BB, DomTreeNodeBase<NodeT> *
iDom
)
89
: TheBB(BB),
IDom
(
iDom
), DFSNumIn(-1), DFSNumOut(-1) { }
123
assert(
IDom
&& "No immediate dominator?");
124
if (
IDom
!= NewIDom) {
126
std::find(
IDom
->Children.begin(),
IDom
->Children.end(), this);
127
assert(I !=
IDom
->Children.end() &
[
all
...]
/external/llvm/lib/CodeGen/
LiveRangeCalc.cpp
301
MachineDomTreeNode *
IDom
= Node->getIDom();
306
bool needPHI = !
IDom
|| !Seen.test(
IDom
->getBlock()->getNumber());
308
//
IDom
dominates all of our predecessors, but it may not be their
310
// properly dominated by
IDom
. If so, we need a phi-def here.
312
IDomValue = LiveOut[
IDom
->getBlock()];
316
LiveOut[
IDom
->getBlock()].second = IDomValue.second =
333
if (DomTree->dominates(
IDom
, Value.second)) {
SplitKit.cpp
721
MachineDomTreeNode *
IDom
= MDT[Loop->getHeader()]->getIDom();
724
if (!
IDom
|| !MDT.dominates(DefDomNode,
IDom
))
727
MBB =
IDom
->getBlock();
[
all
...]
/external/llvm/lib/Target/R600/
SIAnnotateControlFlow.cpp
168
BasicBlock *
IDom
= DT->getNode(Phi->getParent())->getIDom()->getBlock();
170
if (Phi->getIncomingBlock(i) ==
IDom
) {
219
BasicBlock *
IDom
= DT->getNode(Parent)->getIDom()->getBlock();
228
if (From ==
IDom
) {
/external/llvm/lib/Transforms/Scalar/
LoopStrengthReduce.cpp
[
all
...]
Completed in 65 milliseconds