Searched defs:dominates (Results 1 - 13 of 13) sorted by last modified time

/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/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/llvm/include/llvm/CodeGen/
H A DLexicalScopes.h93 // If Parent dominates NewScope then do not close Parent's instruction
95 if (Parent && (!NewScope || !Parent->dominates(NewScope)))
99 /// dominates - Return true if current scope dominates given lexical scope.
100 bool dominates(const LexicalScope *S) const { function in class:llvm::LexicalScope
168 /// dominates - Return true if DebugLoc's lexical scope dominates at least one
170 bool dominates(DebugLoc DL, MachineBasicBlock *MBB);
H A DMachineDominators.h71 inline bool dominates(const MachineDomTreeNode* A, function in class:llvm::MachineDominatorTree
73 return DT->dominates(A, B);
76 inline bool dominates(const MachineBasicBlock* A, function in class:llvm::MachineDominatorTree
78 return DT->dominates(A, B);
81 // dominates - Return true if A dominates B. This performs the
83 bool dominates(const MachineInstr *A, const MachineInstr *B) const { function in class:llvm::MachineDominatorTree
85 if (BBA != BBB) return DT->dominates(BBA, BBB);
93 // A dominates B if it is found first in the basic block.
96 // // A post-dominates
[all...]
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);
/external/llvm/include/llvm/Support/
H A DGenericDomTree.h254 if (ND != NewBB && !DT.dominates(NewBBSucc, ND) &&
285 // If NewBB strictly dominates other blocks, then it is now the immediate
363 /// properlyDominates - Returns true iff A dominates B and A != B.
372 return dominates(A, B);
389 /// dominates - Returns true iff A dominates B. Note that this is not a
392 inline bool dominates(const DomTreeNodeBase<NodeT> *A, function in class:llvm::DominatorTreeBase
394 // A node trivially dominates itself.
402 // And dominates nothing.
428 bool dominates(cons
711 bool DominatorTreeBase<NodeT>::dominates(const NodeT *A, const NodeT *B) const { function in class:llvm::DominatorTreeBase
[all...]
/external/llvm/lib/CodeGen/
H A DLexicalScopes.cpp273 if (PrevLexicalScope && !PrevLexicalScope->dominates(S))
309 /// dominates - Return true if DebugLoc's lexical scope dominates at least one
311 bool LexicalScopes::dominates(DebugLoc DL, MachineBasicBlock *MBB) { function in class:LexicalScopes
327 if (Scope->dominates(IScope))
H A DLiveDebugVariables.cpp88 /// dominates - Return true if current scope dominates at least one machine
90 bool dominates(MachineBasicBlock *MBB) { function in class:__anon25754::UserValueScopes
93 if (LBlocks.count(MBB) != 0 || LS.dominates(DL, MBB))
556 if (UVS.dominates(MBB))
/external/llvm/lib/IR/
H A DDominators.cpp77 // dominates - Return true if Def dominates a use in User. This performs
80 bool DominatorTree::dominates(const Instruction *Def, function in class:DominatorTree
97 // The value defined by an invoke dominates an instruction only if
98 // it dominates every instruction in UseBB.
99 // A PHI is dominated only if the instruction dominates every possible use
102 return dominates(Def, UseBB);
105 return dominates(DefBB, UseBB);
116 // note that dominates(Def, Def->getParent()) is false.
117 bool DominatorTree::dominates(cons function in class:DominatorTree
143 bool DominatorTree::dominates(const BasicBlockEdge &BBE, function in class:DominatorTree
194 bool DominatorTree::dominates(const BasicBlockEdge &BBE, const Use &U) const { function in class:DominatorTree
217 bool DominatorTree::dominates(const Instruction *Def, const Use &U) const { function in class:DominatorTree
[all...]
/external/libsepol/include/sepol/policydb/
H A Dpolicydb.h133 ebitmap_t dominates; /* set of roles dominated by this role */ member in struct:role_datum
/external/clang/include/clang/Analysis/Analyses/
H A DDominators.h107 /// \brief This method tests if one CFGBlock dominates the other.
108 /// The method return true if A dominates B, false otherwise.
109 /// Note a block always dominates itself.
111 inline bool dominates(const CFGBlock* A, const CFGBlock* B) const { function in class:clang::DominatorTree
112 return DT->dominates(A, B);
115 /// \brief This method tests if one CFGBlock properly dominates the other.
116 /// The method return true if A properly dominates B, false otherwise.
/external/chromium_org/third_party/mesa/src/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)) {

Completed in 1007 milliseconds