• Home
  • Raw
  • Download

Lines Matching refs:flags

8 #define EXECOP2(size, res, s1, flags) \  argument
14 : "=q" (res), "=g" (flags)\
15 : "q" (s1), "0" (res), "1" (flags));
17 #define EXECOP1(size, res, flags) \ argument
23 : "=q" (res), "=g" (flags)\
24 : "0" (res), "1" (flags));
29 int64 res, flags; in exec_opq() local
31 flags = iflags; in exec_opq()
32 EXECOP1("", res, flags); in exec_opq()
34 stringify(OP) "q", s0, res, iflags, flags & CC_MASK); in exec_opq()
38 int64 res, flags; in exec_opl() local
40 flags = iflags; in exec_opl()
41 EXECOP1("", res, flags); in exec_opl()
43 stringify(OP) "l", s0, res, iflags, flags & CC_MASK); in exec_opl()
47 int64 res, flags; in exec_opw() local
49 flags = iflags; in exec_opw()
50 EXECOP1("w", res, flags); in exec_opw()
52 stringify(OP) "w", s0, res, iflags, flags & CC_MASK); in exec_opw()
56 int64 res, flags; in exec_opb() local
58 flags = iflags; in exec_opb()
59 EXECOP1("b", res, flags); in exec_opb()
61 stringify(OP) "b", s0, res, iflags, flags & CC_MASK); in exec_opb()
66 int64 res, flags; in exec_opq() local
68 flags = iflags; in exec_opq()
69 EXECOP2("q", res, s1, flags); in exec_opq()
71 stringify(OP) "q", s0, s1, res, iflags, flags & CC_MASK); in exec_opq()
76 int64 res, flags; in exec_opl() local
78 flags = iflags; in exec_opl()
79 EXECOP2("", res, s1, flags); in exec_opl()
81 stringify(OP) "l", s0, s1, res, iflags, flags & CC_MASK); in exec_opl()
86 int64 res, flags; in exec_opw() local
88 flags = iflags; in exec_opw()
89 EXECOP2("w", res, s1, flags); in exec_opw()
91 stringify(OP) "w", s0, s1, res, iflags, flags & CC_MASK); in exec_opw()
96 int64 res, flags; in exec_opb() local
98 flags = iflags; in exec_opb()
99 EXECOP2("b", res, s1, flags); in exec_opb()
101 stringify(OP) "b", s0, s1, res, iflags, flags & CC_MASK); in exec_opb()