Lines Matching full:branches
34 PERF_EVENTS = 'cycles,branch-misses,branches,cache-misses,cache-references'
121 'cycles', 'bmisses', 'branches', 'cmisses', 'caches',
124 _fields = ['cycles', 'bmisses', 'branches', 'cmisses', 'caches']
125 _sort = ['cycles', 'bmisses', 'cmisses', 'branches', 'caches']
128 'bmisses': Int, 'branches': Int,
133 cycles=0, bmisses=0, branches=0, cmisses=0, caches=0, argument
136 Int(cycles), Int(bmisses), Int(branches), Int(cmisses), Int(caches),
143 self.branches + other.branches,
407 'branches': 'branches',
924 branches=False, argument
936 if not branches and not caches:
938 elif branches:
996 if not branches and not caches
997 else float(r.bmisses) > 0 or float(r.branches) > 0
998 if branches
1004 if not branches and not caches
1005 else '%s bmisses, %s branches' % (r.bmisses, r.branches)
1006 if branches
1023 branches=False, argument
1115 branches=branches,
1124 else ['cycles'] if not branches and not caches
1125 else ['bmisses', 'branches'] if branches
1232 '--branches',
1234 help="Show branches and branch misses.")