aboutsummaryrefslogtreecommitdiffstats
path: root/tools/perf/util/annotate.c
diff options
context:
space:
mode:
Diffstat (limited to 'tools/perf/util/annotate.c')
-rw-r--r--tools/perf/util/annotate.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/tools/perf/util/annotate.c b/tools/perf/util/annotate.c
index 2d08c4b62c63..ec7aaf31c2b2 100644
--- a/tools/perf/util/annotate.c
+++ b/tools/perf/util/annotate.c
@@ -145,6 +145,7 @@ static int arch__associate_ins_ops(struct arch* arch, const char *name, struct i
145#include "arch/arc/annotate/instructions.c" 145#include "arch/arc/annotate/instructions.c"
146#include "arch/arm/annotate/instructions.c" 146#include "arch/arm/annotate/instructions.c"
147#include "arch/arm64/annotate/instructions.c" 147#include "arch/arm64/annotate/instructions.c"
148#include "arch/csky/annotate/instructions.c"
148#include "arch/x86/annotate/instructions.c" 149#include "arch/x86/annotate/instructions.c"
149#include "arch/powerpc/annotate/instructions.c" 150#include "arch/powerpc/annotate/instructions.c"
150#include "arch/s390/annotate/instructions.c" 151#include "arch/s390/annotate/instructions.c"
@@ -164,6 +165,10 @@ static struct arch architectures[] = {
164 .init = arm64__annotate_init, 165 .init = arm64__annotate_init,
165 }, 166 },
166 { 167 {
168 .name = "csky",
169 .init = csky__annotate_init,
170 },
171 {
167 .name = "x86", 172 .name = "x86",
168 .init = x86__annotate_init, 173 .init = x86__annotate_init,
169 .instructions = x86__instructions, 174 .instructions = x86__instructions,