Searched refs:TestJ (Results 1 – 2 of 2) sorted by relevance
/external/swiftshader/third_party/subzero/unittest/AssemblerX8632/ |
D | ControlFlow.cpp | 18 #define TestJ(C, Near, Src0, Value0, Src1, Value1, Dest) \ in TEST_F() macro 38 TestJ(o, Near, eax, 0x80000000ul, ebx, 0x1ul, ecx); in TEST_F() 39 TestJ(o, Far, ebx, 0x80000000ul, ecx, 0x1ul, edx); in TEST_F() 40 TestJ(no, Near, ecx, 0x1ul, edx, 0x1ul, edi); in TEST_F() 41 TestJ(no, Far, edx, 0x1ul, edi, 0x1ul, esi); in TEST_F() 42 TestJ(b, Near, edi, 0x1ul, esi, 0x80000000ul, eax); in TEST_F() 43 TestJ(b, Far, esi, 0x1ul, eax, 0x80000000ul, ebx); in TEST_F() 44 TestJ(ae, Near, eax, 0x80000000ul, ebx, 0x1ul, ecx); in TEST_F() 45 TestJ(ae, Far, ebx, 0x80000000ul, ecx, 0x1ul, edx); in TEST_F() 46 TestJ(e, Near, ecx, 0x80000000ul, edx, 0x80000000ul, edi); in TEST_F() [all …]
|
/external/swiftshader/third_party/subzero/unittest/AssemblerX8664/ |
D | ControlFlow.cpp | 17 #define TestJ(C, Near, Dest, Src0, Value0, Src1, Value1) \ in TEST_F() macro 41 TestJ(o, Near, Dst, Src0, 0x80000000ul, Src1, 0x1ul); \ in TEST_F() 42 TestJ(o, Far, Dst, Src0, 0x80000000ul, Src1, 0x1ul); \ in TEST_F() 43 TestJ(no, Near, Dst, Src0, 0x1ul, Src1, 0x1ul); \ in TEST_F() 44 TestJ(no, Far, Dst, Src0, 0x1ul, Src1, 0x1ul); \ in TEST_F() 45 TestJ(b, Near, Dst, Src0, 0x1ul, Src1, 0x80000000ul); \ in TEST_F() 46 TestJ(b, Far, Dst, Src0, 0x1ul, Src1, 0x80000000ul); \ in TEST_F() 47 TestJ(ae, Near, Dst, Src0, 0x80000000ul, Src1, 0x1ul); \ in TEST_F() 48 TestJ(ae, Far, Dst, Src0, 0x80000000ul, Src1, 0x1ul); \ in TEST_F() 49 TestJ(e, Near, Dst, Src0, 0x80000000ul, Src1, 0x80000000ul); \ in TEST_F() [all …]
|