#ifndef __PERF_BLOCK_RANGE_H
#define __PERF_BLOCK_RANGE_H

#include "symbol.h"

/*
 * struct block_range - non-overlapping parts of basic blocks
 * @node:	treenode
 * @start:	inclusive start of range
 * @end:	inclusive end of range
 * @is_target:	@start is a jump target
 * @is_branch:	@end is a branch instruction
 * @coverage:	number of blocks that cover this range
 * @taken:	number of times the branch is taken (requires @is_branch)
 * @pred:	number of times the taken branch was predicted
 */
struct block_range {
	struct rb_node node;

	struct symbol *sym;

	u64 start;
	u64 end;

	int is_target, is_branch;

	u64 coverage;
	u64 entry;
	u64 taken;
	u64 pred;
};

static inline struct block_range *block_range__next(struct block_range *br)
{
	struct rb_node *n = rb_next(&br->node);
	if (!n)
		return NULL;
	return rb_entry(n, struct block_range, node);
}

struct block_range_iter {
	struct block_range *start;
	struct block_range *end;
};

static inline struct block_range *block_range_iter(struct block_range_iter *iter)
{
	return iter->start;
}

static inline bool block_range_iter__next(struct block_range_iter *iter)
{
	if (iter->start == iter->end)
		return false;

	iter->start = block_range__next(iter->start);
	return true;
}

static inline bool block_range_iter__valid(struct block_range_iter *iter)
{
	if (!iter->start || !iter->end)
		return false;
	return true;
}

extern struct block_range *block_range__find(u64 addr);
extern struct block_range_iter block_range__create(u64 start, u64 end);
extern double block_range__coverage(struct block_range *br);

#endif /* __PERF_BLOCK_RANGE_H */
xt.git/refs/?h=nds-private-remove&amp;id=74470954857c264168d2b5a113904cf0cfd27d18'>refs</a><a class='active' href='/cgit.cgi/linux/net-next.git/log/sound/usb/quirks.c?h=nds-private-remove'>log</a><a href='/cgit.cgi/linux/net-next.git/tree/sound/usb/quirks.c?h=nds-private-remove&amp;id=74470954857c264168d2b5a113904cf0cfd27d18'>tree</a><a href='/cgit.cgi/linux/net-next.git/commit/sound/usb/quirks.c?h=nds-private-remove&amp;id=74470954857c264168d2b5a113904cf0cfd27d18'>commit</a><a href='/cgit.cgi/linux/net-next.git/diff/sound/usb/quirks.c?h=nds-private-remove&amp;id=74470954857c264168d2b5a113904cf0cfd27d18'>diff</a></td><td class='form'><form class='right' method='get' action='/cgit.cgi/linux/net-next.git/log/sound/usb/quirks.c'>
<input type='hidden' name='h' value='nds-private-remove'/><input type='hidden' name='id' value='74470954857c264168d2b5a113904cf0cfd27d18'/><select name='qt'>
<option value='grep'>log msg</option>
<option value='author'>author</option>
<option value='committer'>committer</option>
<option value='range'>range</option>
</select>
<input class='txt' type='search' size='10' name='q' value=''/>
<input type='submit' value='search'/>
</form>
</td></tr></table>
<div class='path'>path: <a href='/cgit.cgi/linux/net-next.git/log/?h=nds-private-remove&amp;id=74470954857c264168d2b5a113904cf0cfd27d18'>root</a>/<a href='/cgit.cgi/linux/net-next.git/log/sound?h=nds-private-remove&amp;id=74470954857c264168d2b5a113904cf0cfd27d18'>sound</a>/<a href='/cgit.cgi/linux/net-next.git/log/sound/usb?h=nds-private-remove&amp;id=74470954857c264168d2b5a113904cf0cfd27d18'>usb</a>/<a href='/cgit.cgi/linux/net-next.git/log/sound/usb/quirks.c?h=nds-private-remove&amp;id=74470954857c264168d2b5a113904cf0cfd27d18'>quirks.c</a></div><div class='content'><table class='list nowrap'><tr class='nohover'><th class='left'>Age</th><th class='left'>Commit message (<a href='/cgit.cgi/linux/net-next.git/log/sound/usb/quirks.c?h=nds-private-remove&amp;id=74470954857c264168d2b5a113904cf0cfd27d18&amp;showmsg=1'>Expand</a>)</th><th class='left'>Author</th><th class='left'>Files</th><th class='left'>Lines</th></tr>