HomeSort by relevance Sort by last modified time
    Searched refs:dominates (Results 26 - 50 of 81) sorted by null

12 3 4

  /external/llvm/lib/Transforms/Scalar/
StructurizeCFG.cpp 754 if (!DT->dominates(BB, PI->first))
775 if (!Dominated && DT->dominates(I->first, PrevNode->getEntry()))
866 bool EntryDominatesExit = DT->dominates(ParentRegion->getEntry(), Exit);
906 if (DT->dominates(II, User))
SampleProfile.cpp 309 bool IsDomParent = DomTree->dominates(BB2, BB1);
336 /// dominates B2, B2 post-dominates B1 and both are in the same loop.
358 // 1- BB1 dominates BB2.
359 // 2- BB2 post-dominates BB1.
372 // 1- BB1 post-dominates BB2.
373 // 2- BB2 dominates BB1.
671 /// dominates B2, B2 post-dominates B1 and both are in the same loop.
StraightLineStrengthReduce.cpp 25 // candidates S1 and S2 in the same form and S1 dominates S2, we may rewrite S2
146 // Returns true if Basis is a basis for C, i.e., Basis dominates C and they
226 DT->dominates(Basis.Ins->getParent(), C.Ins->getParent()) &&
  /external/llvm/lib/Transforms/Utils/
BreakCriticalEdges.cpp 207 // the TIBB, TIBB clearly dominates NewBB. TIBB usually doesn't dominate
210 // loop header) then NewBB dominates DestBB.
246 NewBBDominatesDestBB = DT->dominates(DestBBNode, OPNode);
252 // If NewBBDominatesDestBB, then NewBB dominates DestBB, otherwise it
CodeExtractor.cpp 271 // Old dominates New. New node dominates all other nodes dominated
590 DominatesDef = DT->dominates(DefBlock, OldTarget);
598 if (pred && DT && DT->dominates(DefBlock, pred))
SimplifyIndVar.cpp 369 if (!DT->dominates(ContinueBB, UseBB)) {
  /external/selinux/libsepol/src/
genusers.c 170 /* Set the role and every role it dominates */
171 ebitmap_for_each_bit(&roldatum->dominates, rnode, bit) {
users.c 169 /* Set the role and every role it dominates */
170 ebitmap_for_each_bit(&roldatum->dominates, rnode, bit) {
services.c 517 s[++sp] = ebitmap_get_bit(&r1->dominates, val2 - 1);
522 s[++sp] = ebitmap_get_bit(&r2->dominates, val1 - 1);
527 s[++sp] = (!ebitmap_get_bit(&r1->dominates, val2 - 1)
528 && !ebitmap_get_bit(&r2->dominates, val1 - 1));
    [all...]
expand.c 709 if (map_ebitmap(&role->dominates, &mapped_roles, state->rolemap))
712 ebitmap_destroy(&role->dominates);
714 if (ebitmap_cpy(&role->dominates, &mapped_roles))
855 /* The dominates bitmap is going to be wrong for the moment,
858 if (ebitmap_union(&new_role->dominates, &role->dominates)) {
    [all...]
  /external/selinux/libsepol/tests/
test-linker-roles.c 36 * - dominates bitmap is correct
54 * value in its dominates ebitmap */
61 ebitmap_for_each_bit(&role->dominates, tnode, i) {
96 /* and only dominates itself */
117 /* and only dominates itself */
127 /* and only dominates itself */
141 /* and only dominates itself */
154 /* and only dominates itself */
166 /* and only dominates itself */
178 /* and only dominates itself *
    [all...]
  /external/selinux/checkpolicy/
policy_define.c     [all...]
module_compiler.c 293 (&dest_role->dominates, role->s.value - 1, 1)) {
910 (&role->dominates, role->s.value - 1, 1)) {
    [all...]
  /external/llvm/lib/CodeGen/
LiveDebugVariables.cpp 89 /// dominates - Return true if current scope dominates at least one machine
91 bool dominates(MachineBasicBlock *MBB) { function in class:__anon14737::UserValueScopes
94 if (LBlocks.count(MBB) != 0 || LS.dominates(DL, MBB))
594 if (UVS.dominates(MBB))
    [all...]
LiveRangeCalc.cpp 388 // IDom dominates all of our predecessors, but it may not be their
413 if (DomTree->dominates(IDom, Value.second)) {
  /external/llvm/lib/Target/AArch64/
AArch64CollectLOH.cpp 84 // L2 dominates L1 and xA is not redifined between L2 and L1
610 if (!MDT->dominates(L2, L1)) {
696 // dominates the next one.
697 if (!MDT->dominates(Def, Instr))
712 // dominates the next one.
714 return MDT->dominates(Def, Instr);
    [all...]
  /external/llvm/lib/Transforms/ObjCARC/
ObjCARCContract.cpp 530 // argument with uses of the call return value, if it dominates the use. This
563 // If the call's return value dominates a use of the call's argument
569 if (DT->isReachableFromEntry(U) && DT->dominates(Inst, U)) {
  /external/v8/test/mjsunit/compiler/
inline-arguments.js 60 // and dominates all uses.
  /external/mesa3d/src/gallium/drivers/radeon/
AMDILCFGStructurizer.cpp 152 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);
    [all...]
  /external/llvm/lib/Target/R600/
AMDILCFGStructurizer.cpp     [all...]
  /external/llvm/include/llvm/Analysis/
LoopInfoImpl.h 488 // If Header dominates predBB, this is a new loop. Collect the backedges.
489 if (DomTree.dominates(Header, Backedge)
ScalarEvolution.h 190 DominatesBlock, ///< The SCEV dominates the block.
191 ProperlyDominatesBlock ///< The SCEV properly dominates the block.
    [all...]
  /external/llvm/lib/Target/PowerPC/
PPCCTRLoops.cpp 486 if (!DT->dominates(*I, *PI)) {
  /external/mesa3d/src/gallium/drivers/nv50/codegen/
nv50_ir_ssa.cpp 38 bool dominates(BasicBlock *, BasicBlock *);
  /external/selinux/libsepol/include/sepol/policydb/
policydb.h 135 ebitmap_t dominates; /* set of roles dominated by this role */ member in struct:role_datum

Completed in 948 milliseconds

12 3 4