Linux Audio

Check our new training course

Loading...
v6.2
 1// SPDX-License-Identifier: GPL-2.0
 2#include <linux/compiler.h>
 3#include <linux/zalloc.h>
 4#include <sys/types.h>
 5#include <regex.h>
 6#include <stdlib.h>
 7
 8struct arm_annotate {
 9	regex_t call_insn,
10		jump_insn;
11};
12
13static struct ins_ops *arm__associate_instruction_ops(struct arch *arch, const char *name)
14{
15	struct arm_annotate *arm = arch->priv;
16	struct ins_ops *ops;
17	regmatch_t match[2];
18
19	if (!regexec(&arm->call_insn, name, 2, match, 0))
20		ops = &call_ops;
21	else if (!regexec(&arm->jump_insn, name, 2, match, 0))
22		ops = &jump_ops;
23	else
24		return NULL;
25
26	arch__associate_ins_ops(arch, name, ops);
27	return ops;
28}
29
30static int arm__annotate_init(struct arch *arch, char *cpuid __maybe_unused)
31{
32	struct arm_annotate *arm;
33	int err;
34
35	if (arch->initialized)
36		return 0;
37
38	arm = zalloc(sizeof(*arm));
39	if (!arm)
40		return ENOMEM;
41
42#define ARM_CONDS "(cc|cs|eq|ge|gt|hi|le|ls|lt|mi|ne|pl|vc|vs)"
43	err = regcomp(&arm->call_insn, "^blx?" ARM_CONDS "?$", REG_EXTENDED);
44	if (err)
45		goto out_free_arm;
46	err = regcomp(&arm->jump_insn, "^bx?" ARM_CONDS "?$", REG_EXTENDED);
47	if (err)
48		goto out_free_call;
49#undef ARM_CONDS
50
51	arch->initialized = true;
52	arch->priv	  = arm;
53	arch->associate_instruction_ops   = arm__associate_instruction_ops;
54	arch->objdump.comment_char	  = ';';
55	arch->objdump.skip_functions_char = '+';
56	return 0;
57
58out_free_call:
59	regfree(&arm->call_insn);
60out_free_arm:
61	free(arm);
62	return SYMBOL_ANNOTATE_ERRNO__ARCH_INIT_REGEXP;
63}
v4.10.11
 
 
 
 1#include <sys/types.h>
 2#include <regex.h>
 
 3
 4struct arm_annotate {
 5	regex_t call_insn,
 6		jump_insn;
 7};
 8
 9static struct ins_ops *arm__associate_instruction_ops(struct arch *arch, const char *name)
10{
11	struct arm_annotate *arm = arch->priv;
12	struct ins_ops *ops;
13	regmatch_t match[2];
14
15	if (!regexec(&arm->call_insn, name, 2, match, 0))
16		ops = &call_ops;
17	else if (!regexec(&arm->jump_insn, name, 2, match, 0))
18		ops = &jump_ops;
19	else
20		return NULL;
21
22	arch__associate_ins_ops(arch, name, ops);
23	return ops;
24}
25
26static int arm__annotate_init(struct arch *arch)
27{
28	struct arm_annotate *arm;
29	int err;
30
31	if (arch->initialized)
32		return 0;
33
34	arm = zalloc(sizeof(*arm));
35	if (!arm)
36		return -1;
37
38#define ARM_CONDS "(cc|cs|eq|ge|gt|hi|le|ls|lt|mi|ne|pl|vc|vs)"
39	err = regcomp(&arm->call_insn, "^blx?" ARM_CONDS "?$", REG_EXTENDED);
40	if (err)
41		goto out_free_arm;
42	err = regcomp(&arm->jump_insn, "^bx?" ARM_CONDS "?$", REG_EXTENDED);
43	if (err)
44		goto out_free_call;
45#undef ARM_CONDS
46
47	arch->initialized = true;
48	arch->priv	  = arm;
49	arch->associate_instruction_ops   = arm__associate_instruction_ops;
50	arch->objdump.comment_char	  = ';';
51	arch->objdump.skip_functions_char = '+';
52	return 0;
53
54out_free_call:
55	regfree(&arm->call_insn);
56out_free_arm:
57	free(arm);
58	return -1;
59}