Home
last modified time | relevance | path

Searched refs:MKOP (Results 1 – 2 of 2) sorted by relevance

/linux-6.15/arch/powerpc/lib/
H A Dsstep.c2286 op->type = MKOP(LARX, 0, 4); in analyse_instr()
2290 op->type = MKOP(STCX, 0, 4); in analyse_instr()
2295 op->type = MKOP(LARX, 0, 1); in analyse_instr()
2299 op->type = MKOP(STCX, 0, 1); in analyse_instr()
2303 op->type = MKOP(LARX, 0, 2); in analyse_instr()
2307 op->type = MKOP(STCX, 0, 2); in analyse_instr()
2312 op->type = MKOP(LARX, 0, 8); in analyse_instr()
2316 op->type = MKOP(STCX, 0, 8); in analyse_instr()
2756 op->type = MKOP(LOAD, u, 4); in analyse_instr()
2762 op->type = MKOP(LOAD, u, 1); in analyse_instr()
[all …]
/linux-6.15/arch/powerpc/include/asm/
H A Dsstep.h105 #define MKOP(t, f, s) ((t) | (f) | SIZE(s)) macro