/external/valgrind/coregrind/m_gdbserver/ |
D | valgrind-low-amd64.c | 159 VexGuestAMD64State* amd64 = (VexGuestAMD64State*) get_arch (set, tst); in transfer_register() local 164 case 0: VG_(transfer) (&amd64->guest_RAX, buf, dir, size, mod); break; in transfer_register() 165 case 1: VG_(transfer) (&amd64->guest_RBX, buf, dir, size, mod); break; in transfer_register() 166 case 2: VG_(transfer) (&amd64->guest_RCX, buf, dir, size, mod); break; in transfer_register() 167 case 3: VG_(transfer) (&amd64->guest_RDX, buf, dir, size, mod); break; in transfer_register() 168 case 4: VG_(transfer) (&amd64->guest_RSI, buf, dir, size, mod); break; in transfer_register() 169 case 5: VG_(transfer) (&amd64->guest_RDI, buf, dir, size, mod); break; in transfer_register() 170 case 6: VG_(transfer) (&amd64->guest_RBP, buf, dir, size, mod); break; in transfer_register() 171 case 7: VG_(transfer) (&amd64->guest_RSP, buf, dir, size, mod); break; in transfer_register() 172 case 8: VG_(transfer) (&amd64->guest_R8, buf, dir, size, mod); break; in transfer_register() [all …]
|
/external/valgrind/memcheck/tests/vbit-test/ |
D | irops.c | 38 …{ DEFOP(Iop_Add8, UNDEF_LEFT), .s390x = 1, .amd64 = 1, .x86 = 1, .arm = 0, .ppc64 = 1, .ppc32 =… 39 …{ DEFOP(Iop_Add16, UNDEF_LEFT), .s390x = 1, .amd64 = 1, .x86 = 1, .arm = 0, .ppc64 = 1, .ppc32 =… 40 …{ DEFOP(Iop_Add32, UNDEF_LEFT), .s390x = 1, .amd64 = 1, .x86 = 1, .arm = 1, .ppc64 = 1, .ppc32 =… 41 …{ DEFOP(Iop_Add64, UNDEF_LEFT), .s390x = 1, .amd64 = 1, .x86 = 1, .arm = 1, .ppc64 = 1, .ppc32 =… 42 …{ DEFOP(Iop_Sub8, UNDEF_LEFT), .s390x = 1, .amd64 = 1, .x86 = 1, .arm = 0, .ppc64 = 1, .ppc32 =… 43 …{ DEFOP(Iop_Sub16, UNDEF_LEFT), .s390x = 1, .amd64 = 1, .x86 = 1, .arm = 0, .ppc64 = 0, .ppc32 =… 44 …{ DEFOP(Iop_Sub32, UNDEF_LEFT), .s390x = 1, .amd64 = 1, .x86 = 1, .arm = 1, .ppc64 = 1, .ppc32 =… 45 …{ DEFOP(Iop_Sub64, UNDEF_LEFT), .s390x = 1, .amd64 = 1, .x86 = 1, .arm = 1, .ppc64 = 1, .ppc32 =… 46 …{ DEFOP(Iop_Mul8, UNDEF_LEFT), .s390x = 0, .amd64 = 0, .x86 = 0, .arm = 0, .ppc64 = 0, .ppc32 =… 47 …{ DEFOP(Iop_Mul16, UNDEF_LEFT), .s390x = 0, .amd64 = 1, .x86 = 1, .arm = 0, .ppc64 = 0, .ppc32 =… [all …]
|
/external/clang/test/Driver/ |
D | bitrig.c | 1 // RUN: %clang -no-canonical-prefixes -target amd64-pc-bitrig %s -### 2>&1 \ 3 // CHECK-LD-C: clang{{.*}}" "-cc1" "-triple" "amd64-pc-bitrig" 4 // CHECK-LD-C: ld{{.*}}" {{.*}} "-lc" "-lclang_rt.amd64" 6 // RUN: %clangxx -stdlib=platform -no-canonical-prefixes -target amd64-pc-bitrig %s -### 2>&1 \ 8 // CHECK-LD-CXX-STDLIB: clang{{.*}}" "-cc1" "-triple" "amd64-pc-bitrig" 9 …CHECK-LD-CXX-STDLIB: ld{{.*}}" {{.*}} "-lc++" "-lc++abi" "-lpthread" "-lm" "-lc" "-lclang_rt.amd64" 11 // RUN: %clangxx -stdlib=libstdc++ -no-canonical-prefixes -target amd64-pc-bitrig %s -### 2>&1 \ 13 // CHECK-LD-CXX: clang{{.*}}" "-cc1" "-triple" "amd64-pc-bitrig" 14 // CHECK-LD-CXX: ld{{.*}}" {{.*}} "-lstdc++" "-lm" "-lc" "-lclang_rt.amd64" 16 // RUN: %clang -no-canonical-prefixes -target amd64-pc-bitrig -pthread %s -### 2>&1 \ [all …]
|
D | clang-translation.c | 199 // RUN: %clang -target amd64-unknown-openbsd5.2 -### -S %s 2>&1 | \ 200 // RUN: FileCheck -check-prefix=AMD64 %s 201 // AMD64: clang 202 // AMD64: "-cc1" 203 // AMD64: "-triple" 204 // AMD64: "amd64-unknown-openbsd5.2" 205 // AMD64: "-munwind-tables" 207 // RUN: %clang -target amd64--mingw32 -### -S %s 2>&1 | \ 208 // RUN: FileCheck -check-prefix=AMD64-MINGW %s 209 // AMD64-MINGW: clang [all …]
|
/external/valgrind/VEX/auxprogs/ |
D | genoffsets.c | 103 // amd64 in foo() 104 GENOFFSET(AMD64,amd64,RAX); in foo() 105 GENOFFSET(AMD64,amd64,RBX); in foo() 106 GENOFFSET(AMD64,amd64,RCX); in foo() 107 GENOFFSET(AMD64,amd64,RDX); in foo() 108 GENOFFSET(AMD64,amd64,RSI); in foo() 109 GENOFFSET(AMD64,amd64,RDI); in foo() 110 GENOFFSET(AMD64,amd64,RSP); in foo() 111 GENOFFSET(AMD64,amd64,RBP); in foo() 112 GENOFFSET(AMD64,amd64,R8); in foo() [all …]
|
/external/valgrind/none/tests/amd64/ |
D | Makefile.am | 32 bug132813-amd64.vgtest bug132813-amd64.stdout.exp \ 33 bug132813-amd64.stderr.exp \ 34 bug137714-amd64.vgtest bug137714-amd64.stdout.exp \ 35 bug137714-amd64.stderr.exp \ 38 bug156404-amd64.vgtest bug156404-amd64.stdout.exp \ 39 bug156404-amd64.stderr.exp \ 72 rcl-amd64.vgtest rcl-amd64.stdout.exp rcl-amd64.stderr.exp \ 82 slahf-amd64.stderr.exp slahf-amd64.stdout.exp \ 83 slahf-amd64.vgtest \ 92 bug127521-64 bug132813-amd64 bug132918 bug137714-amd64 \ [all …]
|
/external/syslinux/win64/ |
D | find-mingw64.sh | 17 amd64-pc-mingw64- \ 18 amd64-pc-mingw64msvc- \ 19 amd64-pc-mingw32- \ 20 amd64-pc-mingw32msvc- \ 21 amd64-mingw64- \ 22 amd64-mingw64msvc- \ 23 amd64-mingw32- \ 24 amd64-mingw32msvc- \ 25 amd64-w64-mingw32- \ 26 amd64-w64-mingw32msvc- \
|
/external/valgrind/docs/internals/ |
D | 3_2_BUGSTATUS.txt | 11 s93 = possible SuSE 9.3 amd64 assembler bug 18 n-i-bz vx1794 priv/guest-amd64/toIR.c:2512 (dis_op2_E_G): Assertion 62 137714 vx1787 x86/amd64->IR: 0x66 0xF 0xF7 0xC6 (maskmovq, maskmovdq) 81 147498 vx1795 amd64->IR: 0xF0 0xF 0xB0 0xF (lock cmpxchg %cl,(%rdi)) 83 147825 r6793 crash on amd64-linux with gcc 4.2 and glibc 2.6 (CFI) 89 148363 marginal amd64->IR: 0x65 0x4C 0x8B 0x1C (mov %gs:0x10,%r11) 106 150678 vx1798 priv/guest-amd64/toIR.c:3741 (dis_Grp5): Assertion 143 vx1735 vx1750 32 141790 Missing amd64 x87 insns (FCOM, FCOMPP) 144 vx1761 vx1762 32 n-i-bz Missing amd64 x87 insns (FCOMP) 172 vx1741 vx1751 32 133984 int3 (amd64) support [all …]
|
D | multiple-architectures.txt | 11 - dual-arch support on amd64 and ppc64 systems 20 dual-arch systems, the primary platform is amd64 and ppc64 56 On an amd64 system both VGCONF_PLATFORMS_INCLUDE_X86_LINUX and 61 --enable-only32bit or --enable-only64bit is used). For the amd64 example, 76 installed in the appropriate place. On amd64 the result will be: 82 <prefix>/lib/valgrind/amd64-linux 83 <prefix>/lib/valgrind/amd64-linux/vgpreload_core.so 84 <prefix>/lib/valgrind/amd64-linux/vgpreload_massif.so 85 <prefix>/lib/valgrind/amd64-linux/cachegrind 86 <prefix>/lib/valgrind/amd64-linux/memcheck [all …]
|
D | 3_1_BUGSTATUS.txt | 18 v5847 fixed 123210 New: strlen from ld-linux on amd64 30 vx1604 fixed 124499 amd64->IR: 0xF 0xE 0x48 0x85 (femms) 37 vx1602 fixed n-i-bz amd64->IR: 0x66 0xF 0xF5 (pmaddwd) 43 vx1612 fixed 125607 amd64->IR: 0x66 0xF 0xA3 0x2 (btw etc) 44 vx1613 fixed 125651 amd64->IR: 0xF8 0x49 0xFF 0xE3 (clc?) 68 vx1615 fixed 126583 amd64->IR: 0x48 0xF 0xA4 0xC2 (shld $1,%rax,%rdx) 69 vx1614 fixed 126668 amd64->IR: 0x1C 0xFF (sbb $0xff,%al) 87 vx1591 vx1592 117366 amd64: 0xDD 0x7C fnstsw 89 vx1593 vx1594 117367 amd64: 0xD9 0xF4 fxtract 90 v5256 v5260 117369 amd64: __NR_getpriority (140) [all …]
|
D | notes.txt | 10 ToDo: vex-amd64: check above/below the line for reg-alloc 12 23 Apr 05 (memcheck-on-amd64 notes) 28 * Basically only x86 works. I was part-way through getting amd64 30 amd64 is pretty much knackered right now. 101 Cleanup notes derived from making AMD64 work. JRS, started 2 March 05. 105 AMD64 vsyscalls 108 both amd64 and x86, by redirecting jumps to the vsyscall entry 112 does not work on amd64. 117 On amd64, there are multiple vsyscall entry points at -10M +
|
D | howto_oprofile.txt | 15 /home/sewardj/VgTRUNK/atomk/Inst/lib/valgrind/helgrind-amd64-linux \ 20 /home/sewardj/VgTRUNK/atomk/Inst/lib/valgrind/helgrind-amd64-linux \ 25 /home/sewardj/VgTRUNK/atomk/Inst/lib/valgrind/helgrind-amd64-linux \ 34 1. on amd64, need to build V with -fno-omit-frame-pointer, else the 42 3. Even oprofile 0.9.4 (the latest) on amd64-linux doesn't work
|
/external/squashfs-tools/RELEASE-READMEs/ |
D | README-2.0-AMD64 | 1 Information for amd64 users 5 filesystems on amd64 machines. These filesystems work correctly on amd64 6 machines, but cannot be mounted on non-amd64 machines. Likewise, filesystems 7 generated on non amd64 machines could not be mounted on amd64 machines. 11 This bug is now fixed in this release. However, all amd64 filesystems 12 generated by previous releases will not be mountable on amd64 machines 13 with this release. If you have pre-existing amd64 generated filesystems,
|
/external/valgrind/solaris/ |
D | valgrind.p5m | 3 … You can also use Valgrind to build new tools. Currently x86 (32-bit) and amd64 (64-bit) platforms… 45 file path=usr/lib/valgrind/amd64-avx-coresse-valgrind.xml owner=root group=bin mode=… 46 file path=usr/lib/valgrind/amd64-avx-coresse.xml owner=root group=bin mode=… 47 file path=usr/lib/valgrind/amd64-coresse-valgrind.xml owner=root group=bin mode=… 48 file path=usr/lib/valgrind/cachegrind-amd64-solaris owner=root group=bin mode=… 50 file path=usr/lib/valgrind/callgrind-amd64-solaris owner=root group=bin mode=… 53 file path=usr/lib/valgrind/drd-amd64-solaris owner=root group=bin mode=… 55 file path=usr/lib/valgrind/exp-bbv-amd64-solaris owner=root group=bin mode=… 57 file path=usr/lib/valgrind/exp-dhat-amd64-solaris owner=root group=bin mode=… 59 file path=usr/lib/valgrind/exp-sgcheck-amd64-solaris owner=root group=bin mode=… [all …]
|
/external/valgrind/memcheck/tests/amd64/ |
D | Makefile.am | 16 fxsave-amd64.vgtest fxsave-amd64.stdout.exp fxsave-amd64.stderr.exp \ 34 xor-undef-amd64.stderr.exp xor-undef-amd64.stdout.exp \ 35 xor-undef-amd64.vgtest \ 42 fxsave-amd64 \ 47 xor-undef-amd64
|
D | xor-undef-amd64.stderr.exp | 2 at 0x........: main (xor-undef-amd64.c:17) 5 at 0x........: main (xor-undef-amd64.c:38) 8 at 0x........: main (xor-undef-amd64.c:65) 11 at 0x........: main (xor-undef-amd64.c:92) 14 at 0x........: main (xor-undef-amd64.c:117)
|
/external/valgrind/ |
D | NEWS.old | 43 155528 support Core2/SSSE3 insns on x86/amd64 49 158744 vex amd64->IR: 0xF0 0x41 0xF 0xC0 (xaddb) 68 AMD64/Linux, PPC32/Linux and PPC64/Linux. Support for recent distros 123 Core 8 (x86, amd64, ppc32, ppc64) and openSUSE 10.3. glibc 2.6 and 214 n-i-bz guest-amd64/toIR.c:2512 (dis_op2_E_G): Assertion `0' failed. 234 137714 x86/amd64->IR: 0x66 0xF 0xF7 0xC6 (maskmovq, maskmovdq) 249 147498 amd64->IR: 0xF0 0xF 0xB0 0xF (lock cmpxchg %cl,(%rdi)) 252 147825 crash on amd64-linux with gcc 4.2 and glibc 2.6 (CFI) 262 150678 guest-amd64/toIR.c:3741 (dis_Grp5): Assertion `sz == 4' failed 319 areas, including amd64 floating point, powerpc support, and startup [all …]
|
D | NEWS | 37 353398 WARNING: unhandled amd64-solaris syscall: 207 40 353917 unhandled amd64-solaris syscall fchdir(120) 41 353920 unhandled amd64-solaris syscall: 170 51 This release supports X86/Linux, AMD64/Linux, ARM32/Linux, 54 MIPS32/Android, X86/Android, X86/Solaris, AMD64/Solaris, X86/MacOSX 55 10.10 and AMD64/MacOSX 10.10. There is also preliminary support for 56 X86/MacOSX 10.11, AMD64/MacOSX 10.11 and TILEGX/Linux. 60 * Support for Solaris/x86 and Solaris/amd64 has been added. 158 cache coherence (x86, amd64 and s390x). The result is to provide, 253 335785 amd64->IR 0xC4 0xE2 0x75 0x2F (vmaskmovpd) [all …]
|
/external/valgrind/tests/ |
D | x86_amd64_features.c | 7 // This file determines x86/AMD64 features a processor supports. 13 // any feature if run on a non-x86/AMD64 machine). 105 } else if ( strcmp( cpu, "amd64-sse3" ) == 0 ) { in go() 108 } else if ( strcmp( cpu, "amd64-pclmulqdq" ) == 0 ) { in go() 111 } else if ( strcmp( cpu, "amd64-ssse3" ) == 0 ) { in go() 114 } else if ( strcmp( cpu, "amd64-cx16" ) == 0 ) { in go() 117 } else if ( strcmp( cpu, "amd64-lzcnt" ) == 0 ) { in go() 121 } else if ( strcmp( cpu, "amd64-sse42" ) == 0 ) { in go() 124 } else if ( strcmp( cpu, "amd64-avx" ) == 0 ) { in go() 165 // Feature not recognised (non-x86/AMD64 machine!) in go()
|
/external/valgrind/exp-sgcheck/tests/ |
D | Makefile.am | 9 bad_percentify.stdout.exp bad_percentify.stderr.exp-glibc28-amd64 \ 11 globalerr.stderr.exp-glibc28-amd64 \ 12 globalerr.stderr.exp-gcc491-amd64 \ 14 hackedbz2.stderr.exp-glibc28-amd64 \ 17 preen_invars.stderr.exp-glibc28-amd64 \ 19 stackerr.stderr.exp-glibc28-amd64 stackerr.stderr.exp-glibc27-x86
|
/external/google-breakpad/src/processor/ |
D | stackwalker_amd64.h | 30 // stackwalker_amd64.h: amd64-specific stackwalker. 32 // Provides stack frames given amd64 register context and a memory region 33 // corresponding to a amd64 stack. 55 // context is a amd64 context object that gives access to amd64-specific 66 // A STACK CFI-driven frame walker for the AMD64 69 // Implementation of Stackwalker, using amd64 context (stack pointer in %rsp,
|
/external/valgrind/VEX/priv/ |
D | multiarch_main_main.c | 53 gcc -o t1single t1.o -LInst/lib/valgrind -lvex-amd64-linux -lgcc 56 -lvexmultiarch-amd64-linux *before* -lvex-amd64-linux 59 -LInst/lib/valgrind -lvexmultiarch-amd64-linux -lvex-amd64-linux -lgcc 61 t1single will only be able to translate from amd64 to amd64.
|
/external/syslinux/gnu-efi/gnu-efi-3.0/debian/ |
D | changelog | 7 + Make kfreebsd-amd64 a supported architecture. 8 + Build-depend on gcc-multilib on kfreebsd-amd64 too. 10 + Add support for both kfreebsd-{i386,amd64}. 11 + Install FreeBSD x86_64 linker script on kfreebsd-amd64. 12 + Do not install ia64-specific headers on i386/amd64, do not install 13 i386/amd64-specific headers on ia64. 64 AMD64. This closes: bug#473721. 83 * Added support for amd64, Closes: #383801
|
/external/valgrind/coregrind/ |
D | Makefile.am | 361 m_dispatch/dispatch-amd64-linux.S \ 372 m_dispatch/dispatch-amd64-darwin.S \ 374 m_dispatch/dispatch-amd64-solaris.S \ 384 m_gdbserver/valgrind-low-amd64.c \ 401 m_mach/mach_traps-amd64-darwin.S \ 409 m_sigframe/sigframe-amd64-linux.c \ 419 m_sigframe/sigframe-amd64-darwin.c \ 422 m_syswrap/syscall-amd64-linux.S \ 433 m_syswrap/syscall-amd64-darwin.S \ 435 m_syswrap/syscall-amd64-solaris.S \ [all …]
|
/external/valgrind/VEX/ |
D | Makefile-gcc | 151 libvex-amd64-linux.a: TAG-amd64-linux libvex.a 152 mv -f libvex.a libvex-amd64-linux.a 153 TAG-amd64-linux: 154 if [ ! -f TAG-amd64-linux ] ; then rm -f $(LIB_OBJS) TAG-* libvex.a ; fi 155 touch TAG-amd64-linux 193 libvex-amd64-darwin.a: TAG-amd64-darwin libvex.a 194 mv -f libvex.a libvex-amd64-darwin.a 195 TAG-amd64-darwin: 196 if [ ! -f TAG-amd64-darwin ] ; then rm -f $(LIB_OBJS) TAG-* libvex.a ; fi 197 touch TAG-amd64-darwin [all …]
|