Lines Matching refs:flags
9 #define EXECOP2(size, res, s1, flags) \ argument
15 : "=q" (res), "=g" (flags)\
16 : "q" (s1), "0" (res), "1" (flags));
18 #define EXECOP1(size, res, flags) \ argument
24 : "=q" (res), "=g" (flags)\
25 : "0" (res), "1" (flags));
30 int res, flags; in exec_opl() local
32 flags = iflags; in exec_opl()
33 EXECOP1("", res, flags); in exec_opl()
36 stringify(OP) "l", s0, res, iflags, flags & CC_MASK); in exec_opl()
39 res, iflags, flags & CC_MASK); in exec_opl()
44 int res, flags; in exec_opw() local
46 flags = iflags; in exec_opw()
47 EXECOP1("w", res, flags); in exec_opw()
50 stringify(OP) "w", s0, res, iflags, flags & CC_MASK); in exec_opw()
53 res, iflags, flags & CC_MASK); in exec_opw()
58 int res, flags; in exec_opb() local
60 flags = iflags; in exec_opb()
61 EXECOP1("b", res, flags); in exec_opb()
64 stringify(OP) "b", s0, res, iflags, flags & CC_MASK); in exec_opb()
67 res, iflags, flags & CC_MASK); in exec_opb()
73 int res, flags; in exec_opl() local
75 flags = iflags; in exec_opl()
76 EXECOP2("", res, s1, flags); in exec_opl()
79 stringify(OP) "l", s0, s1, res, iflags, flags & CC_MASK); in exec_opl()
82 res, iflags, flags & CC_MASK); in exec_opl()
87 int res, flags; in exec_opw() local
89 flags = iflags; in exec_opw()
90 EXECOP2("w", res, s1, flags); in exec_opw()
93 stringify(OP) "w", s0, s1, res, iflags, flags & CC_MASK); in exec_opw()
96 res, iflags, flags & CC_MASK); in exec_opw()
101 int res, flags; in exec_opb() local
103 flags = iflags; in exec_opb()
104 EXECOP2("b", res, s1, flags); in exec_opb()
107 stringify(OP) "b", s0, s1, res, iflags, flags & CC_MASK); in exec_opb()
110 res, iflags, flags & CC_MASK); in exec_opb()