Home | History | Annotate | Download | only in AssemblerX8664

Lines Matching refs:Near

17 #define TestJ(C, Near, Dest, Src0, Value0, Src1, Value1)                       \
20 "(" #C ", " #Near ", " #Dest ", " #Src0 ", " #Value0 ", " #Src1 \
22 const bool NearJmp = AssemblerX8664::k##Near##Jump; \
41 TestJ(o, Near, Dst, Src0, 0x80000000ul, Src1, 0x1ul); \
43 TestJ(no, Near, Dst, Src0, 0x1ul, Src1, 0x1ul); \
45 TestJ(b, Near, Dst, Src0, 0x1ul, Src1, 0x80000000ul); \
47 TestJ(ae, Near, Dst, Src0, 0x80000000ul, Src1, 0x1ul); \
49 TestJ(e, Near, Dst, Src0, 0x80000000ul, Src1, 0x80000000ul); \
51 TestJ(ne, Near, Dst, Src0, 0x80000000ul, Src1, 0x1ul); \
53 TestJ(be, Near, Dst, Src0, 0x1ul, Src1, 0x80000000ul); \
55 TestJ(a, Near, Dst, Src0, 0x80000000ul, Src1, 0x1ul); \
57 TestJ(s, Near, Dst, Src0, 0x1ul, Src1, 0x80000000ul); \
59 TestJ(ns, Near, Dst, Src0, 0x80000000ul, Src1, 0x1ul); \
61 TestJ(p, Near, Dst, Src0, 0x80000000ul, Src1, 0x1ul); \
63 TestJ(np, Near, Dst, Src0, 0x1ul, Src1, 0x80000000ul); \
65 TestJ(l, Near, Dst, Src0, 0x80000000ul, Src1, 0x1ul); \
67 TestJ(ge, Near, Dst, Src0, 0x1ul, Src1, 0x80000000ul); \
69 TestJ(le, Near, Dst, Src0, 0x80000000ul, Src1, 0x1ul); \
71 TestJ(g, Near, Dst, Src0, 0x1ul, Src1, 0x80000000ul); \
204 #define TestImplAddr(Near) \
210 __ jmp(&ForwardJmp, AssemblerX8664::k##Near##Jump); \
222 __ jmp(&Done, AssemblerX8664::k##Near##Jump); \
283 TestImplAddr(Near);