Searched defs:dominates (Results 1 - 12 of 12) sorted by relevance

/external/llvm/include/llvm/CodeGen/
H A DMachinePostDominators.h56 bool dominates(const MachineDomTreeNode *A, function in struct:llvm::MachinePostDominatorTree
58 return DT->dominates(A, B);
61 bool dominates(const MachineBasicBlock *A, const MachineBasicBlock *B) const { function in struct:llvm::MachinePostDominatorTree
62 return DT->dominates(A, B);
H A DLexicalScopes.h96 // If Parent dominates NewScope then do not close Parent's instruction
98 if (Parent && (!NewScope || !Parent->dominates(NewScope)))
102 /// dominates - Return true if current scope dominates given lexical scope.
103 bool dominates(const LexicalScope *S) const { function in class:llvm::LexicalScope
165 /// dominates - Return true if DebugLoc's lexical scope dominates at least one
167 bool dominates(const MDLocation *DL, MachineBasicBlock *MBB);
H A DMachineDominators.h105 inline bool dominates(const MachineDomTreeNode* A, function in class:llvm::MachineDominatorTree
108 return DT->dominates(A, B);
111 inline bool dominates(const MachineBasicBlock* A, function in class:llvm::MachineDominatorTree
114 return DT->dominates(A, B);
117 // dominates - Return true if A dominates B. This performs the
119 bool dominates(const MachineInstr *A, const MachineInstr *B) const { function in class:llvm::MachineDominatorTree
122 if (BBA != BBB) return DT->dominates(BBA, BBB);
130 // A dominates B if it is found first in the basic block.
133 // // A post-dominates
[all...]
/external/llvm/include/llvm/Analysis/
H A DPostDominators.h57 inline bool dominates(DomTreeNode* A, DomTreeNode* B) const { function in struct:llvm::PostDominatorTree
58 return DT->dominates(A, B);
61 inline bool dominates(const BasicBlock* A, const BasicBlock* B) const { function in struct:llvm::PostDominatorTree
62 return DT->dominates(A, B);
H A DTrace.h79 bool dominates(const BasicBlock *B1, const BasicBlock *B2) const { function in class:llvm::Trace
/external/clang/include/clang/Analysis/Analyses/
H A DDominators.h105 /// \brief This method tests if one CFGBlock dominates the other.
106 /// The method return true if A dominates B, false otherwise.
107 /// Note a block always dominates itself.
109 inline bool dominates(const CFGBlock* A, const CFGBlock* B) const { function in class:clang::DominatorTree
110 return DT->dominates(A, B);
113 /// \brief This method tests if one CFGBlock properly dominates the other.
114 /// The method return true if A properly dominates B, false otherwise.
/external/llvm/lib/IR/
H A DDominators.cpp78 // dominates - Return true if Def dominates a use in User. This performs
81 bool DominatorTree::dominates(const Instruction *Def, function in class:DominatorTree
98 // The value defined by an invoke dominates an instruction only if
99 // it dominates every instruction in UseBB.
100 // A PHI is dominated only if the instruction dominates every possible use
103 return dominates(Def, UseBB);
106 return dominates(DefBB, UseBB);
117 // note that dominates(Def, Def->getParent()) is false.
118 bool DominatorTree::dominates(cons function in class:DominatorTree
144 bool DominatorTree::dominates(const BasicBlockEdge &BBE, function in class:DominatorTree
195 bool DominatorTree::dominates(const BasicBlockEdge &BBE, const Use &U) const { function in class:DominatorTree
218 bool DominatorTree::dominates(const Instruction *Def, const Use &U) const { function in class:DominatorTree
[all...]
/external/llvm/lib/CodeGen/
H A DLexicalScopes.cpp257 if (PrevLexicalScope && !PrevLexicalScope->dominates(S))
293 /// dominates - Return true if DebugLoc's lexical scope dominates at least one
295 bool LexicalScopes::dominates(const MDLocation *DL, MachineBasicBlock *MBB) { function in class:LexicalScopes
309 if (Scope->dominates(IScope))
H A DLiveDebugVariables.cpp89 /// dominates - Return true if current scope dominates at least one machine
91 bool dominates(MachineBasicBlock *MBB) { function in class:__anon10421::UserValueScopes
94 if (LBlocks.count(MBB) != 0 || LS.dominates(DL, MBB))
594 if (UVS.dominates(MBB))
/external/llvm/include/llvm/Support/
H A DGenericDomTree.h276 if (ND != NewBB && !DT.dominates(NewBBSucc, ND) &&
307 // If NewBB strictly dominates other blocks, then it is now the immediate
411 /// properlyDominates - Returns true iff A dominates B and A != B.
420 return dominates(A, B);
435 /// dominates - Returns true iff A dominates B. Note that this is not a
438 bool dominates(const DomTreeNodeBase<NodeT> *A, function in class:llvm::DominatorTreeBase
440 // A node trivially dominates itself.
448 // And dominates nothing.
474 bool dominates(cons
752 bool DominatorTreeBase<NodeT>::dominates(const NodeT *A, const NodeT *B) const { function in class:llvm::DominatorTreeBase
[all...]
/external/mesa3d/src/gallium/drivers/radeon/
H A DAMDILCFGStructurizer.cpp152 inline bool dominates(MachineDomTreeNode *A, MachineDomTreeNode *B) const { function in struct:llvm::MachinePostDominatorTree
153 return DT->dominates(A, B);
156 inline bool dominates(MachineBasicBlock *A, MachineBasicBlock *B) const { function in struct:llvm::MachinePostDominatorTree
157 return DT->dominates(A, B);
1211 if (//postDomTree->dominates(downBlk, falseBlk) &&
2575 if (postDomTree->dominates(blk1, blk2)) {
2578 if (postDomTree->dominates(blk2, blk1)) {
2599 if (postDomTree->dominates(node1, node2)) {
/external/selinux/libsepol/include/sepol/policydb/
H A Dpolicydb.h135 ebitmap_t dominates; /* set of roles dominated by this role */ member in struct:role_datum

Completed in 339 milliseconds