Searched refs:Branches (Results 1 - 9 of 9) sorted by relevance

/external/llvm/test/MC/Mips/mips32r6/
H A Dvalid.s3 # Branches have some unusual encoding rules in MIPS32r6 so we need to test:
/external/llvm/test/MC/Mips/mips64r6/
H A Dvalid.s3 # Branches have some unusual encoding rules in MIPS32r6 so we need to test:
/external/clang/lib/CodeGen/
H A DCGCleanup.h258 llvm::SmallPtrSet<llvm::BasicBlock*, 4> Branches;
359 bool hasBranches() const { return ExtInfo && !ExtInfo->Branches.empty(); }
375 if (ExtInfo.Branches.insert(Block).second)
410 return getExtInfo().Branches.insert(Block).second;
416 return (ExtInfo->BranchAfters.size() != ExtInfo->Branches.size());
/external/mesa3d/src/gallium/drivers/r300/compiler/
H A Dradeon_emulate_branches.c52 struct branch_info * Branches; member in struct:emulate_branch_state
64 s->Branches, s->BranchCount, s->BranchReserved, 1);
68 branch = &s->Branches[s->BranchCount++];
99 branch = &s->Branches[s->BranchCount - 1];
210 branch = &s->Branches[s->BranchCount - 1];
H A Dr500_fragprog_emit.c80 struct branch_info * Branches; member in struct:emit_state
547 s->Branches, s->CurrentBranchDepth, s->BranchesReserved, 1);
549 branch = &s->Branches[s->CurrentBranchDepth++];
566 branch = &s->Branches[s->CurrentBranchDepth - 1];
578 branch = &s->Branches[s->CurrentBranchDepth - 1];
/external/llvm/lib/IR/
H A DGCOV.cpp728 ++Coverage.Branches;
737 ++FuncCoverage.Branches;
761 if (Coverage.Branches) {
762 OS << format("Branches executed:%.2f%% of %u\n",
763 double(Coverage.BranchesExec) * 100 / Coverage.Branches,
764 Coverage.Branches);
766 double(Coverage.BranchesTaken) * 100 / Coverage.Branches,
767 Coverage.Branches);
/external/llvm/lib/Target/Hexagon/MCTargetDesc/
H A DHexagonMCChecker.cpp97 // Branches are the only insns that can change the PC,
270 unsigned Branches = 0, Returns = 0, NewIndirectBranches = 0, local
282 ++Branches;
302 if (Branches) // FIXME: should "Defs.count(Hexagon::PC)" be here too?
310 if (Branches > 1)
/external/clang/include/clang/Analysis/Analyses/
H A DThreadSafetyTIL.h1428 Branches[0] = T;
1429 Branches[1] = E;
1433 Branches[0] = T;
1434 Branches[1] = E;
1440 const BasicBlock *thenBlock() const { return Branches[0]; }
1441 BasicBlock *thenBlock() { return Branches[0]; }
1443 const BasicBlock *elseBlock() const { return Branches[1]; }
1444 BasicBlock *elseBlock() { return Branches[1]; }
1448 return llvm::makeArrayRef(Branches);
1454 BasicBlock *Ntb = Vs.reduceBasicBlockRef(Branches[
1467 BasicBlock *Branches[2]; member in class:clang::threadSafety::Branch
[all...]
/external/llvm/include/llvm/Support/
H A DGCOV.h384 : Name(Name), LogicalLines(0), LinesExec(0), Branches(0),
392 uint32_t Branches; member in struct:llvm::FileInfo::GCOVCoverage

Completed in 332 milliseconds