HomeSort by: relevance | last modified time | path
    Searched refs:asm (Results 1 - 25 of 208) sorted by relevancy

1 2 3 4 5 6 7 8 9

  /src/external/apache2/llvm/dist/llvm/utils/UpdateTestChecks/
asm.py 62 r'(?:^[ \t]+\.(frame|f?mask|set).*?\n)+' # Mips+LLVM standard asm prologue
64 # Mips+LLVM standard asm epilogue
177 def scrub_asm_x86(asm, args):
180 asm = common.SCRUB_WHITESPACE_RE.sub(r' ', asm)
182 asm = string.expandtabs(asm, 2)
184 # Detect shuffle asm comments and hide the operands in favor of the comments.
186 asm = SCRUB_X86_SHUFFLES_NO_MEM_RE.sub(r'\1 {{.*#+}} \2', asm)
    [all...]
  /src/external/bsd/unbound/dist/contrib/android/
15-android.conf 17 inherit_from => [ "android", asm("armv4_asm") ],
21 inherit_from => [ "android", asm("aarch64_asm") ],
27 inherit_from => [ "android", asm("x86_asm") ],
33 inherit_from => [ "android", asm("x86_64_asm") ],
  /src/external/gpl3/gcc.old/dist/libsanitizer/sanitizer_common/
sanitizer_syscall_linux_riscv64.inc 34 register u64 a7 asm("a7") = nr;
35 register u64 a0 asm("a0");
45 register u64 a7 asm("a7") = nr;
46 register u64 a0 asm("a0") = arg1;
56 register u64 a7 asm("a7") = nr;
57 register u64 a0 asm("a0") = arg1;
58 register u64 a1 asm("a1") = arg2;
69 register u64 a7 asm("a7") = nr;
70 register u64 a0 asm("a0") = arg1;
71 register u64 a1 asm("a1") = arg2
    [all...]
sanitizer_syscall_linux_aarch64.inc 16 register u64 x8 asm("x8") = nr;
17 register u64 x0 asm("x0");
18 asm volatile("svc 0"
28 register u64 x8 asm("x8") = nr;
29 register u64 x0 asm("x0") = arg1;
30 asm volatile("svc 0"
40 register u64 x8 asm("x8") = nr;
41 register u64 x0 asm("x0") = arg1;
42 register u64 x1 asm("x1") = arg2;
43 asm volatile("svc 0
    [all...]
sanitizer_syscall_linux_arm.inc 16 register u32 r8 asm("r7") = nr;
17 register u32 r0 asm("r0");
18 asm volatile("swi #0"
28 register u32 r8 asm("r7") = nr;
29 register u32 r0 asm("r0") = arg1;
30 asm volatile("swi #0"
40 register u32 r8 asm("r7") = nr;
41 register u32 r0 asm("r0") = arg1;
42 register u32 r1 asm("r1") = arg2;
43 asm volatile("swi #0
    [all...]
sanitizer_syscall_linux_x86_64.inc 17 asm volatile("syscall" : "=a"(retval) : "a"(nr) : "rcx", "r11",
25 asm volatile("syscall" : "=a"(retval) : "a"(nr), "D"((u64)arg1) :
33 asm volatile("syscall" : "=a"(retval) : "a"(nr), "D"((u64)arg1),
41 asm volatile("syscall" : "=a"(retval) : "a"(nr), "D"((u64)arg1),
49 asm volatile("mov %5, %%r10;"
60 asm volatile("mov %5, %%r10;"
73 asm volatile("mov %5, %%r10;"
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_syscall_linux_aarch64.inc 17 register u64 x8 asm("x8") = nr;
18 register u64 x0 asm("x0");
19 asm volatile("svc 0"
29 register u64 x8 asm("x8") = nr;
30 register u64 x0 asm("x0") = arg1;
31 asm volatile("svc 0"
41 register u64 x8 asm("x8") = nr;
42 register u64 x0 asm("x0") = arg1;
43 register u64 x1 asm("x1") = arg2;
44 asm volatile("svc 0
    [all...]
sanitizer_syscall_linux_arm.inc 17 register u32 r8 asm("r7") = nr;
18 register u32 r0 asm("r0");
19 asm volatile("swi #0"
29 register u32 r8 asm("r7") = nr;
30 register u32 r0 asm("r0") = arg1;
31 asm volatile("swi #0"
41 register u32 r8 asm("r7") = nr;
42 register u32 r0 asm("r0") = arg1;
43 register u32 r1 asm("r1") = arg2;
44 asm volatile("swi #0
    [all...]
sanitizer_syscall_linux_x86_64.inc 18 asm volatile("syscall" : "=a"(retval) : "a"(nr) : "rcx", "r11",
26 asm volatile("syscall" : "=a"(retval) : "a"(nr), "D"((u64)arg1) :
34 asm volatile("syscall" : "=a"(retval) : "a"(nr), "D"((u64)arg1),
42 asm volatile("syscall" : "=a"(retval) : "a"(nr), "D"((u64)arg1),
50 asm volatile("mov %5, %%r10;"
61 asm volatile("mov %5, %%r10;"
74 asm volatile("mov %5, %%r10;"
  /src/external/bsd/unbound/dist/contrib/ios/
15-ios.conf 16 inherit_from => [ "ios-common", asm("armv4_asm") ],
21 inherit_from => [ "ios-common", asm("aarch64_asm") ],
  /src/external/apache2/llvm/dist/libcxx/utils/google-benchmark/tools/
strip_asm.py 4 strip_asm.py - Cleanup ASM output for the specified file
12 def find_used_labels(asm):
15 for l in asm.splitlines():
22 def normalize_labels(asm):
25 for l in asm.splitlines():
30 return asm
33 return asm
35 asm = re.sub("(^|\s+)" + ld + "(?=:|\s)", '\\1.' + ld, asm)
36 return asm
    [all...]
  /src/external/apache2/llvm/dist/llvm/utils/benchmark/tools/
strip_asm.py 4 strip_asm.py - Cleanup ASM output for the specified file
12 def find_used_labels(asm):
15 for l in asm.splitlines():
22 def normalize_labels(asm):
25 for l in asm.splitlines():
30 return asm
33 return asm
35 asm = re.sub("(^|\s+)" + ld + "(?=:|\s)", '\\1.' + ld, asm)
36 return asm
    [all...]
  /src/tests/share/examples/
t_asm.sh 31 # Verifies if a particular asm example is implemented for the current
33 # of the examples/asm/ subtree that includes the code for the example
41 local implemented=$(cd /usr/share/examples/asm/${name}/ && \
56 cp /usr/share/examples/asm/${name}/* .
61 atf_set "descr" "Builds, runs and validates the 'hello' asm example"
62 atf_set "require.files" "/usr/share/examples/asm/hello/"
  /src/share/examples/
Makefile 5 SUBDIR= amd apm asm devpubd disktab emul fstab ftpd getdate \
  /src/share/examples/asm/
Makefile 9 FILESDIR= /usr/share/examples/asm
  /src/external/gpl3/binutils/lib/libopcodes/arch/aarch64/
defs.mk 6 G_BFD_MACHINES=aarch64-asm.lo aarch64-dis.lo aarch64-opc.lo aarch64-asm-2.lo aarch64-dis-2.lo aarch64-opc-2.lo arm-dis.lo
  /src/external/gpl3/binutils/lib/libopcodes/arch/aarch64eb/
defs.mk 6 G_BFD_MACHINES=aarch64-asm.lo aarch64-dis.lo aarch64-opc.lo aarch64-asm-2.lo aarch64-dis-2.lo aarch64-opc-2.lo arm-dis.lo
  /src/external/gpl3/binutils.old/lib/libopcodes/arch/aarch64/
defs.mk 6 G_BFD_MACHINES=aarch64-asm.lo aarch64-dis.lo aarch64-opc.lo aarch64-asm-2.lo aarch64-dis-2.lo aarch64-opc-2.lo arm-dis.lo
  /src/external/gpl3/binutils.old/lib/libopcodes/arch/aarch64eb/
defs.mk 6 G_BFD_MACHINES=aarch64-asm.lo aarch64-dis.lo aarch64-opc.lo aarch64-asm-2.lo aarch64-dis-2.lo aarch64-opc-2.lo arm-dis.lo
  /src/usr.sbin/cpuctl/
Makefile 18 .if exists(${.CURDIR}/arch/${MACHINE_ARCH}-asm.S)
19 SRCS+= ${MACHINE_ARCH}-asm.S
  /src/share/examples/asm/hello/
Makefile 7 FILESDIR= /usr/share/examples/asm/hello
  /src/external/gpl3/gcc.old/dist/libgcc/config/avr/libf7/
f7renames.sh 25 Used by: libf7.c, libf7.h, libf7-asm.sx, f7-wraps.h.
59 asm)
62 echo "/* Renames for libf7-asm.sx, f7-wraps.h. */"
libf7-asm-object.mk 12 f7_asm_$o$(objext): f7_asm_%$(objext): $(libf7)/libf7-asm.sx
17 f7_asm_$(o)_s$(objext): f7_asm_%_s$(objext): $(libf7)/libf7-asm.sx
  /src/sys/arch/luna68k/dev/xplx/
Makefile 7 ZASM?= zasm # see "used language" comments in xplx.asm
12 xplx.rom xplx.lst: xplx.asm
13 ${ZASM} -uwy xplx.asm || (rm -f xplx.rom xplx.lst ; exit 1)
  /src/external/apache2/llvm/lib/libLLVMSparcCodeGen/
Makefile 27 SparcGenAsmMatcher.inc|-gen-asm-matcher \
28 SparcGenAsmWriter.inc|-gen-asm-writer \

Completed in 37 milliseconds

1 2 3 4 5 6 7 8 9