Searched defs:dominates (Results 1 - 13 of 13) 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 DILocation *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/lib/Analysis/
H A DOrderedBasicBlock.cpp61 /// \brief Find out whether \p A dominates \p B, meaning whether \p A
65 bool OrderedBasicBlock::dominates(const Instruction *A, const Instruction *B) { function in class:OrderedBasicBlock
/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.cpp74 // dominates - Return true if Def dominates a use in User. This performs
77 bool DominatorTree::dominates(const Instruction *Def, function in class:DominatorTree
94 // The value defined by an invoke dominates an instruction only if it
95 // dominates every instruction in UseBB.
96 // A PHI is dominated only if the instruction dominates every possible use in
99 return dominates(Def, UseBB);
102 return dominates(DefBB, UseBB);
113 // note that dominates(Def, Def->getParent()) is false.
114 bool DominatorTree::dominates(cons function in class:DominatorTree
140 bool DominatorTree::dominates(const BasicBlockEdge &BBE, function in class:DominatorTree
192 bool DominatorTree::dominates(const BasicBlockEdge &BBE, const Use &U) const { function in class:DominatorTree
216 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 DILocation *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:__anon12215::UserValueScopes
94 return LBlocks.count(MBB) != 0 || LS.dominates(DL, 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
413 /// properlyDominates - Returns true iff A dominates B and A != B.
422 return dominates(A, B);
437 /// dominates - Returns true iff A dominates B. Note that this is not a
440 bool dominates(const DomTreeNodeBase<NodeT> *A, function in class:llvm::DominatorTreeBase
442 // A node trivially dominates itself.
450 // And dominates nothing.
476 bool dominates(cons
754 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 971 milliseconds