HomeSort by relevance Sort by last modified time
    Searched defs:dominates (Results 1 - 12 of 12) sorted by null

  /external/llvm/include/llvm/CodeGen/
MachinePostDominators.h 57 bool dominates(const MachineDomTreeNode *A, function in struct:llvm::MachinePostDominatorTree
59 return DT->dominates(A, B);
62 bool dominates(const MachineBasicBlock *A, const MachineBasicBlock *B) const { function in struct:llvm::MachinePostDominatorTree
63 return DT->dominates(A, B);
MachineDominators.h 71 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 B if B is found first in the basic block
    [all...]
LexicalScopes.h 74 /// dominates - Return true if DebugLoc's lexical scope dominates at least one
76 bool dominates(DebugLoc DL, MachineBasicBlock *MBB);
206 // If Parent dominates NewScope then do not close Parent's instruction
208 if (Parent && (!NewScope || !Parent->dominates(NewScope)))
212 /// dominates - Return true if current scope dominates given lexical scope.
213 bool dominates(const LexicalScope *S) const { function in class:llvm::LexicalScope
  /external/llvm/include/llvm/Analysis/
PostDominators.h 57 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);
Trace.h 79 bool dominates(const BasicBlock *B1, const BasicBlock *B2) const { function in class:llvm::Trace
Dominators.h 260 if (ND != NewBB && !DT.dominates(NewBBSucc, ND) &&
291 // If NewBB strictly dominates other blocks, then it is now the immediate
349 /// properlyDominates - Returns true iff A dominates B and A != B.
358 return dominates(A, B);
375 /// dominates - Returns true iff A dominates B. Note that this is not a
378 inline bool dominates(const DomTreeNodeBase<NodeT> *A, function in class:llvm::DominatorTreeBase
380 // A node trivially dominates itself.
388 // And dominates nothing.
414 bool dominates(const NodeT *A, const NodeT *B)
682 bool DominatorTreeBase<NodeT>::dominates(const NodeT *A, const NodeT *B) { function in class:llvm::DominatorTreeBase
781 inline bool dominates(const DomTreeNode* A, const DomTreeNode* B) const { function in class:llvm::DominatorTree
785 inline bool dominates(const BasicBlock* A, const BasicBlock* B) const { function in class:llvm::DominatorTree
    [all...]
  /external/llvm/lib/IR/
Dominators.cpp 96 // dominates - Return true if Def dominates a use in User. This performs
99 bool DominatorTree::dominates(const Instruction *Def, function in class:DominatorTree
116 // The value defined by an invoke dominates an instruction only if
117 // it dominates every instruction in UseBB.
118 // A PHI is dominated only if the instruction dominates every possible use
121 return dominates(Def, UseBB);
124 return dominates(DefBB, UseBB);
135 // note that dominates(Def, Def->getParent()) is false.
136 bool DominatorTree::dominates(const Instruction *Def function in class:DominatorTree
162 bool DominatorTree::dominates(const BasicBlockEdge &BBE, function in class:DominatorTree
213 bool DominatorTree::dominates(const BasicBlockEdge &BBE, function in class:DominatorTree
237 bool DominatorTree::dominates(const Instruction *Def, function in class:DominatorTree
    [all...]
  /external/clang/include/clang/Analysis/Analyses/
Dominators.h 101 /// \brief This method tests if one CFGBlock dominates the other.
102 /// The method return true if A dominates B, false otherwise.
103 /// Note a block always dominates itself.
105 inline bool dominates(const CFGBlock* A, const CFGBlock* B) const { function in class:clang::DominatorTree
106 return DT->dominates(A, B);
109 /// \brief This method tests if one CFGBlock properly dominates the other.
110 /// The method return true if A properly dominates B, false otherwise.
  /external/llvm/lib/CodeGen/
LexicalScopes.cpp 253 if (PrevLexicalScope && !PrevLexicalScope->dominates(S))
290 /// dominates - Return true if DebugLoc's lexical scope dominates at least one
292 bool LexicalScopes::dominates(DebugLoc DL, MachineBasicBlock *MBB) { function in class:LexicalScopes
308 if (Scope->dominates(IScope))
LiveDebugVariables.cpp 85 /// dominates - Return true if current scope dominates at least one machine
87 bool dominates(MachineBasicBlock *MBB) { function in class:__anon11422::UserValueScopes
90 if (LBlocks.count(MBB) != 0 || LS.dominates(DL, MBB))
544 if (UVS.dominates(MBB))
    [all...]
  /external/llvm/lib/Transforms/Utils/
PromoteMemoryToRegister.cpp 261 /// dominates - Return true if BB1 dominates BB2 using the DominatorTree.
263 bool dominates(BasicBlock *BB1, BasicBlock *BB2) const { function in struct:__anon11941::PromoteMem2Reg
264 return DT.dominates(BB1, BB2);
    [all...]
  /external/libsepol/include/sepol/policydb/
policydb.h 132 ebitmap_t dominates; /* set of roles dominated by this role */ member in struct:role_datum

Completed in 130 milliseconds