Searched refs:xmm (Results 1 - 23 of 23) sorted by relevance

/freebsd-10-stable/contrib/llvm/tools/lldb/source/Plugins/Process/POSIX/
H A DRegisterInfos_x86_64.h204 DEFINE_XMM(xmm, 0),
205 DEFINE_XMM(xmm, 1),
206 DEFINE_XMM(xmm, 2),
207 DEFINE_XMM(xmm, 3),
208 DEFINE_XMM(xmm, 4),
209 DEFINE_XMM(xmm, 5),
210 DEFINE_XMM(xmm, 6),
211 DEFINE_XMM(xmm, 7),
212 DEFINE_XMM(xmm, 8),
213 DEFINE_XMM(xmm,
[all...]
H A DRegisterInfos_i386.h158 DEFINE_XMM(xmm, 0),
159 DEFINE_XMM(xmm, 1),
160 DEFINE_XMM(xmm, 2),
161 DEFINE_XMM(xmm, 3),
162 DEFINE_XMM(xmm, 4),
163 DEFINE_XMM(xmm, 5),
164 DEFINE_XMM(xmm, 6),
165 DEFINE_XMM(xmm, 7),
167 // Copy of YMM registers assembled from xmm and ymmh
H A DRegisterContextPOSIX_x86.cpp575 // Parse ymm registers and into xmm.bytes and ymmh.bytes.
583 ::memcpy(m_fpr.xstate.fxsave.xmm[reg - m_reg_info.first_ymm].bytes,
594 ::memcpy(m_fpr.xstate.fxsave.xmm[reg - m_reg_info.first_ymm].bytes,
605 // Concatenate xmm.bytes with ymmh.bytes
614 m_fpr.xstate.fxsave.xmm[reg - m_reg_info.first_ymm].bytes,
625 m_fpr.xstate.fxsave.xmm[reg - m_reg_info.first_ymm].bytes,
H A DRegisterContext_x86.h419 XMMReg xmm[16]; // 16*16 bytes for each XMM-reg = 256 bytes member in struct:FXSAVE
439 YMMReg ymm[16]; // assembled from ymmh and xmm registers
454 YMMHReg ymmh[16]; // High 16 bytes of each of 16 YMM registers (the low bytes are in FXSAVE.xmm for compatibility with SSE)
H A DRegisterContextPOSIXProcessMonitor_x86.cpp240 value.SetBytes(m_fpr.xstate.fxsave.xmm[reg - m_reg_info.first_xmm].bytes, reg_info->byte_size, byte_order);
243 // Concatenate ymm using the register halves in xmm.bytes and ymmh.bytes
293 ::memcpy (m_fpr.xstate.fxsave.xmm[reg - m_reg_info.first_xmm].bytes, value.GetBytes(), value.GetByteSize());
300 // Store ymm register content, and split into the register halves in xmm.bytes and ymmh.bytes
/freebsd-10-stable/crypto/openssl/crypto/perlasm/
H A Dx86asm.pl88 if ("$dst:$src" =~ /(e[a-dsd][ixp]):xmm([0-7])/)
96 if ("$dst:$src" =~ /xmm([0-7]):(e[a-dsd][ixp])/)
104 if ("$dst:$src" =~ /xmm([0-7]):xmm([0-7])/)
112 if ("$dst:$src" =~ /xmm([0-7]):xmm([0-7])/)
120 if ("$dst:$src" =~ /xmm([0-7]):xmm([0-7])/)
H A Dx86_64-xlate.pl125 } elsif ($self->{op} =~ /mov[dq]/ && $line =~ /%xmm/) {
669 if ($arg =~ /%xmm([0-9]+),\s*%r(\w+)/) {
676 } elsif ($arg =~ /%r(\w+),\s*%xmm([0-9]+)/) {
689 if (shift =~ /\$([0-9]+),\s*%xmm([0-9]+),\s*(%\w+)/) {
707 if (shift =~ /\$([0-9]+),\s*(%\w+),\s*%xmm([0-9]+)/) {
725 if (shift =~ /%xmm([0-9]+),\s*%xmm([0-9]+)/) {
737 if (shift =~ /\$([0-9]+),\s*%xmm([0-9]+),\s*%xmm([0-9]+)/) {
750 if (shift =~ /\$([x0-9a-f]+),\s*%xmm([
[all...]
/freebsd-10-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/
H A DRegisterContextDarwin_x86_64.cpp298 { DEFINE_FPU_VECT(xmm,0) },
299 { DEFINE_FPU_VECT(xmm,1) },
300 { DEFINE_FPU_VECT(xmm,2) },
301 { DEFINE_FPU_VECT(xmm,3) },
302 { DEFINE_FPU_VECT(xmm,4) },
303 { DEFINE_FPU_VECT(xmm,5) },
304 { DEFINE_FPU_VECT(xmm,6) },
305 { DEFINE_FPU_VECT(xmm,7) },
306 { DEFINE_FPU_VECT(xmm,8) },
307 { DEFINE_FPU_VECT(xmm,
[all...]
H A DRegisterContextDarwin_i386.cpp270 { DEFINE_FPU_VECT(xmm,0) },
271 { DEFINE_FPU_VECT(xmm,1) },
272 { DEFINE_FPU_VECT(xmm,2) },
273 { DEFINE_FPU_VECT(xmm,3) },
274 { DEFINE_FPU_VECT(xmm,4) },
275 { DEFINE_FPU_VECT(xmm,5) },
276 { DEFINE_FPU_VECT(xmm,6) },
277 { DEFINE_FPU_VECT(xmm,7) },
657 //::memcpy (reg_value.value.vector.uint8, fpu.xmm[reg - fpu_xmm0].bytes, 16);
776 ::memcpy (fpu.xmm[re
[all...]
H A DRegisterContextDarwin_i386.h111 XMMReg xmm[8]; member in struct:RegisterContextDarwin_i386::FPU
H A DRegisterContextDarwin_x86_64.h115 XMMReg xmm[16]; member in struct:RegisterContextDarwin_x86_64::FPU
/freebsd-10-stable/crypto/openssl/crypto/rc4/asm/
H A Drc4-md5-x86_64.pl220 my $xmm="%xmm".($j&1);
223 $code.=" pxor $xmm,$xmm\n" if ($rc4 && $j<=1);
240 #rc4# pinsrw \$`($j>>1)&7`,($dat,$TX[0],4),$xmm\n
260 my $xmm="%xmm".($j&1);
263 $code.=" pxor $xmm,$xmm\n" if ($rc4 && $j<=1);
280 #rc4# pinsrw \$`($j>>1)&7`,($dat,$TX[0],4),$xmm\
[all...]
H A Drc4-x86_64.pl258 my $xmm="%xmm".($j&1);
266 $code.=" pxor $xmm,$xmm\n" if ($i<=1);
275 $code.=" pinsrw \$`($j>>1)&7`,($dat,$TX[0],4),$xmm\n";
/freebsd-10-stable/crypto/openssl/crypto/sha/asm/
H A Dsha1-586.pl107 $xmm=$ymm=0;
108 for (@ARGV) { $xmm=1 if (/-DOPENSSL_IA32_SSE2/); }
110 $ymm=1 if ($xmm &&
115 $ymm=1 if ($xmm && !$ymm && $ARGV[0] eq "win32n" &&
119 $ymm=1 if ($xmm && !$ymm && `$ENV{CC} -v 2>&1` =~ /(^clang version|based on LLVM) ([3-9]\.[0-9]+)/ &&
122 &external_label("OPENSSL_ia32cap_P") if ($xmm);
300 if ($xmm) {
394 if ($xmm) {
398 # %xmm[0-7] are used as ring @X[] buffer containing quadruples of last
406 # no %xmm register
[all...]
/freebsd-10-stable/sys/i386/i386/
H A Dexception.s144 IDTVEC(xmm)
H A Dmachdep.c1989 IDTVEC(xmm),
3297 setidt(IDT_XF, &IDTVEC(xmm), SDT_SYS386TGT, SEL_KPL,
/freebsd-10-stable/crypto/openssl/crypto/aes/asm/
H A Daesni-sha1-x86_64.pl112 my @X=map("%xmm$_",(4..7,0..3));
113 my @Tx=map("%xmm$_",(8..10));
118 my ($iv,$in,$rndkey0)=map("%xmm$_",(11..13));
187 movdqu 0($inp),@X[-4&7] # load input to %xmm[0-3]
641 my @X=map("%xmm$_",(4..7,0..3));
642 my @Tx=map("%xmm$_",(8..10));
707 vmovdqu 0($inp),@X[-4&7] # load input to %xmm[0-3]
1234 if ($line=~/(aes[a-z]+)\s+%xmm([0-9]+),\s*%xmm([0-9]+)/) {
1248 $code =~ s/\b(aes.*%xmm[
[all...]
H A Daesni-x86.pl80 if ("$dst:$src" =~ /xmm([0-7]):xmm([0-7])/)
85 if ("$dst:$src" =~ /xmm([0-7]):xmm([0-7])/)
H A Daesni-x86_64.pl195 # %xmm register layout
1037 my ($in0,$in1,$in2,$in3)=map("%xmm$_",(8..11));
1324 my @tweak=map("%xmm$_",(10..15));
2798 lea 0(%rax),%rsi # %xmm save area
2834 lea 0x20(%rax),%rsi # %xmm save area
2875 lea 0x60(%rax),%rsi # %xmm save area
3056 if ($line=~/(aeskeygenassist)\s+\$([x0-9a-f]+),\s*%xmm([0-9]+),\s*%xmm([0-9]+)/) {
3064 elsif ($line=~/(aes[a-z]+)\s+%xmm([0-9]+),\s*%xmm([
[all...]
/freebsd-10-stable/sys/i386/xen/
H A Dexception.s150 IDTVEC(xmm)
H A Dxen_machdep.c88 IDTVEC(xmm), IDTVEC(lcall_syscall), IDTVEC(int0x80_syscall);
1179 {19, 0, GSEL(GCODE_SEL, SEL_KPL), (unsigned long) &IDTVEC(xmm)},
/freebsd-10-stable/sys/amd64/amd64/
H A Dexception.S143 IDTVEC(xmm)
H A Dmachdep.c1178 IDTVEC(xmm), IDTVEC(dblfault),
1929 setidt(IDT_XF, &IDTVEC(xmm), SDT_SYSIGT, SEL_KPL, 0);

Completed in 125 milliseconds