Home
last modified time | relevance | path

Searched refs:x86 (Results 1 – 25 of 5105) sorted by relevance

12345678910>>...205

/external/u-boot/drivers/bios_emulator/x86emu/
Ddecode.c52 if (M.x86.intr & INTR_SYNCH) { in x86emu_intr_handle()
53 intno = M.x86.intno; in x86emu_intr_handle()
57 push_word((u16)M.x86.R_FLG); in x86emu_intr_handle()
60 push_word(M.x86.R_CS); in x86emu_intr_handle()
61 M.x86.R_CS = mem_access_word(intno * 4 + 2); in x86emu_intr_handle()
62 push_word(M.x86.R_IP); in x86emu_intr_handle()
63 M.x86.R_IP = mem_access_word(intno * 4); in x86emu_intr_handle()
64 M.x86.intr = 0; in x86emu_intr_handle()
80 M.x86.intno = intrnum; in x86emu_intr_raise()
81 M.x86.intr |= INTR_SYNCH; in x86emu_intr_raise()
[all …]
Ddebug.c60 printk("%04x:%04x ", M.x86.saved_cs, M.x86.saved_ip); in X86EMU_trace_regs()
61 print_encoded_bytes(M.x86.saved_cs, M.x86.saved_ip); in X86EMU_trace_regs()
79 printk("%04x:%04x ", M.x86.saved_cs, M.x86.saved_ip); in x86emu_just_disassemble()
80 print_encoded_bytes(M.x86.saved_cs, M.x86.saved_ip); in x86emu_just_disassemble()
114 tregs.x86.R_IP = off; in disassemble_forward()
115 tregs.x86.R_CS = seg; in disassemble_forward()
118 tregs.x86.enc_str_pos = 0; in disassemble_forward()
119 tregs.x86.enc_pos = 0; in disassemble_forward()
122 tregs.x86.debug |= DEBUG_DISASSEMBLE_F; in disassemble_forward()
133 op1 = (*sys_rdb) (((u32) M.x86.R_CS << 4) + (M.x86.R_IP++)); in disassemble_forward()
[all …]
Dops.c181 if (M.x86.R_SP != 0) { in x86emuOp_illegal_op()
185 M.x86.R_CS, M.x86.R_IP-1,op1)); in x86emuOp_illegal_op()
258 if (M.x86.mode & SYSMODE_PREFIX_DATA) { in x86emuOp_genop_word_RM_R()
282 if (M.x86.mode & SYSMODE_PREFIX_DATA) { in x86emuOp_genop_word_RM_R()
361 if (M.x86.mode & SYSMODE_PREFIX_DATA) { in x86emuOp_genop_word_R_RM()
377 if (M.x86.mode & SYSMODE_PREFIX_DATA) { in x86emuOp_genop_word_R_RM()
415 M.x86.R_AL = genop_byte_operation[op1](M.x86.R_AL, srcval); in x86emuOp_genop_byte_AL_IMM()
431 if (M.x86.mode & SYSMODE_PREFIX_DATA) { in x86emuOp_genop_word_AX_IMM()
442 if (M.x86.mode & SYSMODE_PREFIX_DATA) { in x86emuOp_genop_word_AX_IMM()
443 M.x86.R_EAX = genop_long_operation[op1](M.x86.R_EAX, srcval); in x86emuOp_genop_word_AX_IMM()
[all …]
/external/u-boot/drivers/bios_emulator/
Dbios.c77 if (M.x86.R_AH == 0x12 && M.x86.R_BL == 0x32) { in int42()
78 if (M.x86.R_AL == 0) { in int42()
82 } else if (M.x86.R_AL == 1) { in int42()
90 M.x86.R_AL); in int42()
97 M.x86.R_AH, M.x86.R_AL, M.x86.R_BL); in int42()
162 switch (M.x86.R_AX) {
164 M.x86.R_AL = 0x00; /* no config space/special cycle generation support */
165 M.x86.R_EDX = 0x20494350; /* " ICP" */
166 M.x86.R_BX = 0x0210; /* Version 2.10 */
167 M.x86.R_CL = 0; /* Max bus number in system */
[all …]
Dbiosemu.c110 M.x86.debug = debugFlags; in BE_init()
249 M.x86.R_EAX = regs->e.eax; in BE_callRealMode()
250 M.x86.R_EBX = regs->e.ebx; in BE_callRealMode()
251 M.x86.R_ECX = regs->e.ecx; in BE_callRealMode()
252 M.x86.R_EDX = regs->e.edx; in BE_callRealMode()
253 M.x86.R_ESI = regs->e.esi; in BE_callRealMode()
254 M.x86.R_EDI = regs->e.edi; in BE_callRealMode()
255 M.x86.R_DS = sregs->ds; in BE_callRealMode()
256 M.x86.R_ES = sregs->es; in BE_callRealMode()
257 M.x86.R_FS = sregs->fs; in BE_callRealMode()
[all …]
/external/u-boot/arch/x86/lib/
Dbios_interrupts.c28 switch ((M.x86.R_EAX & 0xff00) >> 8) { in int10_handler()
33 if (cursor_row != ((M.x86.R_EDX >> 8) & 0xff) || in int10_handler()
34 cursor_col >= (M.x86.R_EDX & 0xff)) { in int10_handler()
37 cursor_row = (M.x86.R_EDX >> 8) & 0xff; in int10_handler()
38 cursor_col = M.x86.R_EDX & 0xff; in int10_handler()
42 M.x86.R_EAX &= 0x00ff; in int10_handler()
43 M.x86.R_ECX = 0x0607; in int10_handler()
44 M.x86.R_EDX = (cursor_row << 8) | cursor_col; in int10_handler()
52 M.x86.R_EAX = 0x0f00 | 'A'; /* White on black 'A' */ in int10_handler()
57 debug("%c", M.x86.R_EAX & 0xff); in int10_handler()
[all …]
Dbios.c60 .eax = M.x86.R_EAX, in int_exception_handler()
61 .ecx = M.x86.R_ECX, in int_exception_handler()
62 .edx = M.x86.R_EDX, in int_exception_handler()
63 .ebx = M.x86.R_EBX, in int_exception_handler()
64 .esp = M.x86.R_ESP, in int_exception_handler()
65 .ebp = M.x86.R_EBP, in int_exception_handler()
66 .esi = M.x86.R_ESI, in int_exception_handler()
67 .edi = M.x86.R_EDI, in int_exception_handler()
68 .vector = M.x86.intno, in int_exception_handler()
70 .eip = M.x86.R_EIP, in int_exception_handler()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/test/Object/X86/
Dobjdump-disassembly-inline-relocations.test3 RUN: llvm-objdump -d -r %p/../Inputs/trivial-object-test.coff-x86-64 \
4 RUN: | FileCheck %s -check-prefix COFF-x86-64
7 RUN: llvm-objdump -d -r %p/../Inputs/trivial-object-test.macho-x86-64 \
8 RUN: | FileCheck %s -check-prefix MACHO-x86-64
11 RUN: llvm-objdump -d -r %p/../Inputs/trivial-object-test.elf-x86-64 \
12 RUN: | FileCheck %s -check-prefix ELF-x86-64
28 COFF-x86-64: file format COFF-x86-64
29 COFF-x86-64: Disassembly of section .text:
30 COFF-x86-64: 0: 48 83 ec 28 subq $40, %rsp
31 COFF-x86-64: 4: c7 44 24 24 00 00 00 00 movl $0, 36(%rsp)
[all …]
Dobjdump-trivial-object.test3 RUN: llvm-objdump -d %p/../Inputs/trivial-object-test.coff-x86-64 \
4 RUN: | FileCheck %s -check-prefix COFF-x86-64
7 RUN: llvm-objdump -d %p/../Inputs/trivial-object-test.elf-x86-64 \
8 RUN: | FileCheck %s -check-prefix ELF-x86-64
21 COFF-x86-64: file format COFF-x86-64
22 COFF-x86-64: Disassembly of section .text:
23 COFF-x86-64: 0: 48 83 ec 28 subq $40, %rsp
24 COFF-x86-64: 4: c7 44 24 24 00 00 00 00 movl $0, 36(%rsp)
25 COFF-x86-64: c: 48 8d 0d 00 00 00 00 leaq (%rip), %rcx
26 COFF-x86-64: 13: e8 00 00 00 00 callq 0
[all …]
/external/llvm/test/Object/X86/
Dobjdump-disassembly-inline-relocations.test3 RUN: llvm-objdump -d -r %p/../Inputs/trivial-object-test.coff-x86-64 \
4 RUN: | FileCheck %s -check-prefix COFF-x86-64
7 RUN: llvm-objdump -d -r %p/../Inputs/trivial-object-test.macho-x86-64 \
8 RUN: | FileCheck %s -check-prefix MACHO-x86-64
11 RUN: llvm-objdump -d -r %p/../Inputs/trivial-object-test.elf-x86-64 \
12 RUN: | FileCheck %s -check-prefix ELF-x86-64
28 COFF-x86-64: file format COFF-x86-64
29 COFF-x86-64: Disassembly of section .text:
30 COFF-x86-64: 0: 48 83 ec 28 subq $40, %rsp
31 COFF-x86-64: 4: c7 44 24 24 00 00 00 00 movl $0, 36(%rsp)
[all …]
Dobjdump-trivial-object.test3 RUN: llvm-objdump -d %p/../Inputs/trivial-object-test.coff-x86-64 \
4 RUN: | FileCheck %s -check-prefix COFF-x86-64
7 RUN: llvm-objdump -d %p/../Inputs/trivial-object-test.elf-x86-64 \
8 RUN: | FileCheck %s -check-prefix ELF-x86-64
21 COFF-x86-64: file format COFF-x86-64
22 COFF-x86-64: Disassembly of section .text:
23 COFF-x86-64: 0: 48 83 ec 28 subq $40, %rsp
24 COFF-x86-64: 4: c7 44 24 24 00 00 00 00 movl $0, 36(%rsp)
25 COFF-x86-64: c: 48 8d 0d 00 00 00 00 leaq (%rip), %rcx
26 COFF-x86-64: 13: e8 00 00 00 00 callq 0
[all …]
/external/capstone/cstool/
Dcstool_x86.c14 cs_x86 *x86; in print_insn_detail_x86() local
20 x86 = &(ins->detail->x86); in print_insn_detail_x86()
22 print_string_hex("\tPrefix:", x86->prefix, 4); in print_insn_detail_x86()
24 print_string_hex("\tOpcode:", x86->opcode, 4); in print_insn_detail_x86()
26 printf("\trex: 0x%x\n", x86->rex); in print_insn_detail_x86()
28 printf("\taddr_size: %u\n", x86->addr_size); in print_insn_detail_x86()
29 printf("\tmodrm: 0x%x\n", x86->modrm); in print_insn_detail_x86()
30 printf("\tdisp: 0x%x\n", x86->disp); in print_insn_detail_x86()
34 printf("\tsib: 0x%x\n", x86->sib); in print_insn_detail_x86()
35 if (x86->sib_base != X86_REG_INVALID) in print_insn_detail_x86()
[all …]
/external/libaom/libaom/aom_dsp/
Daom_dsp.cmake47 "${AOM_ROOT}/aom_dsp/x86/convolve_common_intrin.h"
51 "${AOM_ROOT}/aom_dsp/x86/aom_convolve_copy_sse2.asm"
52 "${AOM_ROOT}/aom_dsp/x86/aom_high_subpixel_8t_sse2.asm"
53 "${AOM_ROOT}/aom_dsp/x86/aom_high_subpixel_bilinear_sse2.asm"
54 "${AOM_ROOT}/aom_dsp/x86/aom_subpixel_8t_sse2.asm"
55 "${AOM_ROOT}/aom_dsp/x86/aom_subpixel_bilinear_sse2.asm"
56 "${AOM_ROOT}/aom_dsp/x86/highbd_intrapred_asm_sse2.asm"
57 "${AOM_ROOT}/aom_dsp/x86/intrapred_asm_sse2.asm"
58 "${AOM_ROOT}/aom_dsp/x86/inv_wht_sse2.asm")
61 "${AOM_ROOT}/aom_dsp/x86/aom_subpixel_8t_intrin_sse2.c"
[all …]
/external/capstone/arch/X86/
DX86ATTInstPrinter.c61 MI->flat_insn->detail->x86.op_count++; in set_mem_access()
273 MI->flat_insn->detail->x86.operands[MI->flat_insn->detail->x86.op_count].type = X86_OP_MEM; in printSrcIdx()
274 MI->flat_insn->detail->x86.operands[MI->flat_insn->detail->x86.op_count].size = MI->x86opsize; in printSrcIdx()
275 …MI->flat_insn->detail->x86.operands[MI->flat_insn->detail->x86.op_count].mem.segment = X86_REG_INV… in printSrcIdx()
276 …MI->flat_insn->detail->x86.operands[MI->flat_insn->detail->x86.op_count].mem.base = X86_REG_INVALI… in printSrcIdx()
277 …MI->flat_insn->detail->x86.operands[MI->flat_insn->detail->x86.op_count].mem.index = X86_REG_INVAL… in printSrcIdx()
278 MI->flat_insn->detail->x86.operands[MI->flat_insn->detail->x86.op_count].mem.scale = 1; in printSrcIdx()
279 MI->flat_insn->detail->x86.operands[MI->flat_insn->detail->x86.op_count].mem.disp = 0; in printSrcIdx()
289 MI->flat_insn->detail->x86.operands[MI->flat_insn->detail->x86.op_count].mem.segment = reg; in printSrcIdx()
307 MI->flat_insn->detail->x86.operands[MI->flat_insn->detail->x86.op_count].type = X86_OP_MEM; in printDstIdx()
[all …]
DX86IntelInstPrinter.c60 MI->flat_insn->detail->x86.op_count++; in set_mem_access()
299 MI->flat_insn->detail->x86.operands[MI->flat_insn->detail->x86.op_count].type = X86_OP_MEM; in printSrcIdx()
300 MI->flat_insn->detail->x86.operands[MI->flat_insn->detail->x86.op_count].size = MI->x86opsize; in printSrcIdx()
301 …MI->flat_insn->detail->x86.operands[MI->flat_insn->detail->x86.op_count].mem.segment = X86_REG_INV… in printSrcIdx()
302 …MI->flat_insn->detail->x86.operands[MI->flat_insn->detail->x86.op_count].mem.base = X86_REG_INVALI… in printSrcIdx()
303 …MI->flat_insn->detail->x86.operands[MI->flat_insn->detail->x86.op_count].mem.index = X86_REG_INVAL… in printSrcIdx()
304 MI->flat_insn->detail->x86.operands[MI->flat_insn->detail->x86.op_count].mem.scale = 1; in printSrcIdx()
305 MI->flat_insn->detail->x86.operands[MI->flat_insn->detail->x86.op_count].mem.disp = 0; in printSrcIdx()
315 MI->flat_insn->detail->x86.operands[MI->flat_insn->detail->x86.op_count].mem.segment = reg; in printSrcIdx()
330 MI->flat_insn->detail->x86.operands[MI->flat_insn->detail->x86.op_count].type = X86_OP_MEM; in printDstIdx()
[all …]
/external/libaom/
DAndroid.bp6 "libaom/av1/common/x86/av1_inv_txfm_avx2.c",
7 "libaom/av1/common/x86/cfl_avx2.c",
8 "libaom/av1/common/x86/convolve_2d_avx2.c",
9 "libaom/av1/common/x86/convolve_avx2.c",
10 "libaom/av1/common/x86/highbd_convolve_2d_avx2.c",
11 "libaom/av1/common/x86/highbd_inv_txfm_avx2.c",
12 "libaom/av1/common/x86/highbd_jnt_convolve_avx2.c",
13 "libaom/av1/common/x86/highbd_wiener_convolve_avx2.c",
14 "libaom/av1/common/x86/jnt_convolve_avx2.c",
15 "libaom/av1/common/x86/reconinter_avx2.c",
[all …]
/external/libavc/
DAndroid.bp173 x86: {
181 "decoder/x86",
182 "common/x86",
186 "decoder/x86/ih264d_function_selector.c",
187 "decoder/x86/ih264d_function_selector_sse42.c",
188 "decoder/x86/ih264d_function_selector_ssse3.c",
189 "common/x86/ih264_inter_pred_filters_ssse3.c",
190 "common/x86/ih264_deblk_luma_ssse3.c",
191 "common/x86/ih264_deblk_chroma_ssse3.c",
192 "common/x86/ih264_padding_ssse3.c",
[all …]
/external/libvpx/libvpx/vpx_dsp/
Dvpx_dsp.mk16 DSP_SRCS-$(HAVE_AVX2) += x86/bitdepth_conversion_avx2.h
17 DSP_SRCS-$(HAVE_SSE2) += x86/bitdepth_conversion_sse2.h
50 DSP_SRCS-$(HAVE_SSE) += x86/intrapred_sse2.asm
51 DSP_SRCS-$(HAVE_SSE2) += x86/intrapred_sse2.asm
52 DSP_SRCS-$(HAVE_SSSE3) += x86/intrapred_ssse3.asm
56 DSP_SRCS-$(HAVE_SSE) += x86/highbd_intrapred_sse2.asm
57 DSP_SRCS-$(HAVE_SSE2) += x86/highbd_intrapred_sse2.asm
58 DSP_SRCS-$(HAVE_SSE2) += x86/highbd_intrapred_intrin_sse2.c
59 DSP_SRCS-$(HAVE_SSSE3) += x86/highbd_intrapred_intrin_ssse3.c
70 DSP_SRCS-$(HAVE_SSE2) += x86/add_noise_sse2.asm
[all …]
/external/swiftshader/third_party/LLVM/test/Object/
Dobjdump-trivial-object.test3 RUN: llvm-objdump -d %p/TestObjectFiles/trivial-object-test.coff-x86-64 \
4 RUN: | FileCheck %s -check-prefix COFF-x86-64
7 RUN: llvm-objdump -d %p/TestObjectFiles/trivial-object-test.elf-x86-64 \
8 RUN: | FileCheck %s -check-prefix ELF-x86-64
21 COFF-x86-64: file format COFF-x86-64
22 COFF-x86-64: Disassembly of section .text:
23 COFF-x86-64: 0: 48 83 ec 28 subq $40, %rsp
24 COFF-x86-64: 4: c7 44 24 24 00 00 00 00 movl $0, 36(%rsp)
25 COFF-x86-64: c: 48 8d 0d 00 00 00 00 leaq (%rip), %rcx
26 COFF-x86-64: 13: e8 00 00 00 00 callq 0
[all …]
/external/libmpeg2/
DAndroid.bp149 x86: {
159 "decoder/x86",
160 "common/x86",
164 "decoder/x86/impeg2d_function_selector.c",
165 "decoder/x86/impeg2d_function_selector_avx2.c",
166 "decoder/x86/impeg2d_function_selector_ssse3.c",
167 "decoder/x86/impeg2d_function_selector_sse42.c",
168 "common/x86/ideint_function_selector.c",
169 "common/x86/ideint_function_selector_ssse3.c",
170 "common/x86/ideint_function_selector_sse42.c",
[all …]
/external/swiftshader/third_party/LLVM/test/CodeGen/X86/
Davx-intrinsics-x86.ll1 ; RUN: llc < %s -mtriple=x86_64-apple-darwin -march=x86 -mcpu=corei7 -mattr=avx | FileCheck %s
5 %res = call <2 x i64> @llvm.x86.aesni.aesdec(<2 x i64> %a0, <2 x i64> %a1) ; <<2 x i64>> [#uses=1]
8 declare <2 x i64> @llvm.x86.aesni.aesdec(<2 x i64>, <2 x i64>) nounwind readnone
13 …%res = call <2 x i64> @llvm.x86.aesni.aesdeclast(<2 x i64> %a0, <2 x i64> %a1) ; <<2 x i64>> [#use…
16 declare <2 x i64> @llvm.x86.aesni.aesdeclast(<2 x i64>, <2 x i64>) nounwind readnone
21 %res = call <2 x i64> @llvm.x86.aesni.aesenc(<2 x i64> %a0, <2 x i64> %a1) ; <<2 x i64>> [#uses=1]
24 declare <2 x i64> @llvm.x86.aesni.aesenc(<2 x i64>, <2 x i64>) nounwind readnone
29 …%res = call <2 x i64> @llvm.x86.aesni.aesenclast(<2 x i64> %a0, <2 x i64> %a1) ; <<2 x i64>> [#use…
32 declare <2 x i64> @llvm.x86.aesni.aesenclast(<2 x i64>, <2 x i64>) nounwind readnone
37 %res = call <2 x i64> @llvm.x86.aesni.aesimc(<2 x i64> %a0) ; <<2 x i64>> [#uses=1]
[all …]
/external/capstone/tests/
Dtest_x86.c37 cs_x86 *x86; in print_insn_detail() local
43 x86 = &(ins->detail->x86); in print_insn_detail()
45 print_string_hex("\tPrefix:", x86->prefix, 4); in print_insn_detail()
47 print_string_hex("\tOpcode:", x86->opcode, 4); in print_insn_detail()
49 printf("\trex: 0x%x\n", x86->rex); in print_insn_detail()
51 printf("\taddr_size: %u\n", x86->addr_size); in print_insn_detail()
52 printf("\tmodrm: 0x%x\n", x86->modrm); in print_insn_detail()
53 printf("\tdisp: 0x%x\n", x86->disp); in print_insn_detail()
57 printf("\tsib: 0x%x\n", x86->sib); in print_insn_detail()
58 if (x86->sib_base != X86_REG_INVALID) in print_insn_detail()
[all …]
/external/u-boot/drivers/bios_emulator/include/x86emu/
Ddebug.h52 # define CHECK_IP_FETCH() (M.x86.check & CHECK_IP_FETCH_F)
53 # define CHECK_SP_ACCESS() (M.x86.check & CHECK_SP_ACCESS_F)
54 # define CHECK_MEM_ACCESS() (M.x86.check & CHECK_MEM_ACCESS_F)
55 # define CHECK_DATA_ACCESS() (M.x86.check & CHECK_DATA_ACCESS_F)
64 # define DEBUG_INSTRUMENT() (M.x86.debug & DEBUG_INSTRUMENT_F)
65 # define DEBUG_DECODE() (M.x86.debug & DEBUG_DECODE_F)
66 # define DEBUG_TRACE() (M.x86.debug & DEBUG_TRACE_F)
67 # define DEBUG_STEP() (M.x86.debug & DEBUG_STEP_F)
68 # define DEBUG_DISASSEMBLE() (M.x86.debug & DEBUG_DISASSEMBLE_F)
69 # define DEBUG_BREAK() (M.x86.debug & DEBUG_BREAK_F)
[all …]
/external/icu/icu4c/source/samples/all/
Dall.sln58 Debug|x86 = Debug|x86
60 Release|x86 = Release|x86
65 {DEEADF02-9C14-4854-A395-E505D2904D65}.Debug|x86.ActiveCfg = Debug|Win32
66 {DEEADF02-9C14-4854-A395-E505D2904D65}.Debug|x86.Build.0 = Debug|Win32
69 {DEEADF02-9C14-4854-A395-E505D2904D65}.Release|x86.ActiveCfg = Release|Win32
70 {DEEADF02-9C14-4854-A395-E505D2904D65}.Release|x86.Build.0 = Release|Win32
73 {F7659D77-09CF-4FE9-ACEE-927287AA9509}.Debug|x86.ActiveCfg = Debug|Win32
74 {F7659D77-09CF-4FE9-ACEE-927287AA9509}.Debug|x86.Build.0 = Debug|Win32
77 {F7659D77-09CF-4FE9-ACEE-927287AA9509}.Release|x86.ActiveCfg = Release|Win32
78 {F7659D77-09CF-4FE9-ACEE-927287AA9509}.Release|x86.Build.0 = Release|Win32
[all …]
/external/llvm/test/Transforms/InstCombine/
Dx86-xop.ll7 ; CHECK-NEXT: [[TMP2:%.*]] = tail call <2 x double> @llvm.x86.xop.vfrcz.sd(<2 x double> [[TMP1]])
13 %3 = tail call <2 x double> @llvm.x86.xop.vfrcz.sd(<2 x double> %2)
24 %3 = tail call <2 x double> @llvm.x86.xop.vfrcz.sd(<2 x double> %2)
32 ; CHECK-NEXT: [[TMP2:%.*]] = tail call <4 x float> @llvm.x86.xop.vfrcz.ss(<4 x float> [[TMP1]])
40 %5 = tail call <4 x float> @llvm.x86.xop.vfrcz.ss(<4 x float> %4)
53 %5 = tail call <4 x float> @llvm.x86.xop.vfrcz.ss(<4 x float> %4)
64 %1 = tail call <2 x i64> @llvm.x86.xop.vpcomltq(<2 x i64> %a, <2 x i64> %b)
74 %1 = tail call <2 x i64> @llvm.x86.xop.vpcomltuq(<2 x i64> %a, <2 x i64> %b)
84 %1 = tail call <2 x i64> @llvm.x86.xop.vpcomleq(<2 x i64> %a, <2 x i64> %b)
94 %1 = tail call <2 x i64> @llvm.x86.xop.vpcomleuq(<2 x i64> %a, <2 x i64> %b)
[all …]

12345678910>>...205