Home
last modified time | relevance | path

Searched refs:att_syntax (Results 1 – 25 of 406) sorted by relevance

12345678910>>...17

/dports/lang/rust/rustc-1.58.1-src/src/test/ui/asm/aarch64/
H A Dbad-options.stderr39 error: expected one of `)`, `att_syntax`, or `raw`, found `nomem`
43 | ^^^^^ expected one of `)`, `att_syntax`, or `raw`
45 error: expected one of `)`, `att_syntax`, or `raw`, found `readonly`
49 | ^^^^^^^^ expected one of `)`, `att_syntax`, or `raw`
51 error: expected one of `)`, `att_syntax`, or `raw`, found `noreturn`
55 | ^^^^^^^^ expected one of `)`, `att_syntax`, or `raw`
57 error: expected one of `)`, `att_syntax`, or `raw`, found `pure`
61 | ^^^^ expected one of `)`, `att_syntax`, or `raw`
63 error: expected one of `)`, `att_syntax`, or `raw`, found `nostack`
67 | ^^^^^^^ expected one of `)`, `att_syntax`, or `raw`
[all …]
/dports/lang/rust/rustc-1.58.1-src/src/test/ui/asm/x86_64/
H A Dduplicate-options.rs10 asm!("", options(att_syntax, att_syntax)); in main()
12 asm!("", options(nostack, att_syntax), options(nostack)); in main()
21 options(att_syntax, noreturn), //~ ERROR the `noreturn` option was already provided in main()
28 global_asm!("", options(att_syntax, att_syntax));
H A Dbad-options.stderr48 error: expected one of `)`, `att_syntax`, or `raw`, found `nomem`
52 | ^^^^^ expected one of `)`, `att_syntax`, or `raw`
54 error: expected one of `)`, `att_syntax`, or `raw`, found `readonly`
58 | ^^^^^^^^ expected one of `)`, `att_syntax`, or `raw`
60 error: expected one of `)`, `att_syntax`, or `raw`, found `noreturn`
64 | ^^^^^^^^ expected one of `)`, `att_syntax`, or `raw`
66 error: expected one of `)`, `att_syntax`, or `raw`, found `pure`
70 | ^^^^ expected one of `)`, `att_syntax`, or `raw`
72 error: expected one of `)`, `att_syntax`, or `raw`, found `nostack`
76 | ^^^^^^^ expected one of `)`, `att_syntax`, or `raw`
[all …]
H A Dduplicate-options.stderr7 error: the `att_syntax` option was already provided
10 LL | asm!("", options(att_syntax, att_syntax));
16 LL | asm!("", options(nostack, att_syntax), options(nostack));
40 LL | options(att_syntax, noreturn),
55 error: the `att_syntax` option was already provided
58 LL | global_asm!("", options(att_syntax, att_syntax));
H A Dduplicate-options.fixed10 asm!("", options(att_syntax, ));
11 //~^ ERROR the `att_syntax` option was already provided
12 asm!("", options(nostack, att_syntax), options());
21 options(att_syntax, ), //~ ERROR the `noreturn` option was already provided
28 global_asm!("", options(att_syntax, ));
29 //~^ ERROR the `att_syntax` option was already provided
H A Dinterpolated-idents.stderr4 … $options($pure, $nomem, $readonly, $preserves_flags, $noreturn, $nostack, $att_syntax));
9 LL | | noreturn nostack att_syntax options);
17 … $options($pure, $nomem, $readonly, $preserves_flags, $noreturn, $nostack, $att_syntax));
22 LL | | noreturn nostack att_syntax options);
40 LL | | noreturn nostack att_syntax options);
/dports/lang/rust/rustc-1.58.1-src/src/test/ui/asm/
H A Dinline-syntax.x86_64.stderr21 warning: avoid using `.att_syntax`, prefer using `options(att_syntax)` instead
24 LL | asm!(".att_syntax noprefix", "nop");
27 warning: avoid using `.att_syntax`, prefer using `options(att_syntax)` instead
30 LL | asm!(".att_syntax bbb noprefix", "nop");
/dports/lang/rust/rustc-1.58.1-src/src/tools/clippy/tests/ui/
H A Dasm_syntax.rs12 asm!("", options(att_syntax)); in use_asm()
13 asm!("", options(nostack, att_syntax)); in use_asm()
23 asm!("", options(att_syntax)); in use_asm()
24 asm!("", options(nostack, att_syntax)); in use_asm()
/dports/lang/rust/rustc-1.58.1-src/vendor/compiler_builtins/src/mem/
H A Dx86_64.rs28 options(att_syntax, nostack, preserves_flags) in copy_forward()
46 options(att_syntax, nostack, preserves_flags) in copy_forward()
67 options(att_syntax, nostack) in copy_backward()
80 options(att_syntax, nostack, preserves_flags) in set_bytes()
98 options(att_syntax, nostack, preserves_flags) in set_bytes()
/dports/lang/rust/rustc-1.58.1-src/compiler/rustc_codegen_gcc/tests/run/
H A Dasm.rs29 options(att_syntax) in main()
41 options(att_syntax) in main()
117 options(att_syntax) in main()
133 asm!("call {}", sym foo, lateout("rax") x, options(att_syntax)); in main()
148 asm!("movq {0}(%rip), {1}", sym FOO, lateout(reg) x, options(att_syntax)); in main()
/dports/lang/rust/rustc-1.58.1-src/library/stdarch/crates/core_arch/src/x86/
H A Deflags.rs16 asm!("pushfd", "pop {}", out(reg) eflags, options(nomem, att_syntax)); in __readeflags()
33 asm!("pushfq", "pop {}", out(reg) eflags, options(nomem, att_syntax)); in __readeflags()
49 asm!("push {}", "popfd", in(reg) eflags, options(nomem, att_syntax)); in __writeeflags()
64 asm!("push {}", "popfq", in(reg) eflags, options(nomem, att_syntax)); in __writeeflags()
/dports/devel/llvm-cheri/llvm-project-37c49ff00e3eadce5d8703fdc4497f28458c64a8/llvm/test/CodeGen/X86/
H A Dms-inline-asm.ll12 ; CHECK: .att_syntax
24 ; CHECK: .att_syntax
38 ; CHECK: .att_syntax
61 ; CHECK: .att_syntax
79 ; CHECK: .att_syntax
96 ; CHECK: .att_syntax
101 ; CHECK: .att_syntax
123 ; CHECK: .att_syntax
155 ; CHECK: .att_syntax
/dports/devel/llvm11/llvm-11.0.1.src/test/CodeGen/X86/
H A Dms-inline-asm.ll12 ; CHECK: .att_syntax
24 ; CHECK: .att_syntax
38 ; CHECK: .att_syntax
61 ; CHECK: .att_syntax
79 ; CHECK: .att_syntax
96 ; CHECK: .att_syntax
101 ; CHECK: .att_syntax
123 ; CHECK: .att_syntax
155 ; CHECK: .att_syntax
/dports/devel/llvm-devel/llvm-project-f05c95f10fc1d8171071735af8ad3a9e87633120/llvm/test/CodeGen/X86/
H A Dms-inline-asm.ll12 ; CHECK: .att_syntax
24 ; CHECK: .att_syntax
38 ; CHECK: .att_syntax
61 ; CHECK: .att_syntax
79 ; CHECK: .att_syntax
96 ; CHECK: .att_syntax
101 ; CHECK: .att_syntax
123 ; CHECK: .att_syntax
155 ; CHECK: .att_syntax
/dports/devel/wasi-libcxx/llvm-project-13.0.1.src/llvm/test/CodeGen/X86/
H A Dms-inline-asm.ll12 ; CHECK: .att_syntax
24 ; CHECK: .att_syntax
38 ; CHECK: .att_syntax
61 ; CHECK: .att_syntax
79 ; CHECK: .att_syntax
96 ; CHECK: .att_syntax
101 ; CHECK: .att_syntax
123 ; CHECK: .att_syntax
155 ; CHECK: .att_syntax
/dports/graphics/llvm-mesa/llvm-13.0.1.src/test/CodeGen/X86/
H A Dms-inline-asm.ll12 ; CHECK: .att_syntax
24 ; CHECK: .att_syntax
38 ; CHECK: .att_syntax
61 ; CHECK: .att_syntax
79 ; CHECK: .att_syntax
96 ; CHECK: .att_syntax
101 ; CHECK: .att_syntax
123 ; CHECK: .att_syntax
155 ; CHECK: .att_syntax
/dports/devel/llvm12/llvm-project-12.0.1.src/llvm/test/CodeGen/X86/
H A Dms-inline-asm.ll12 ; CHECK: .att_syntax
24 ; CHECK: .att_syntax
38 ; CHECK: .att_syntax
61 ; CHECK: .att_syntax
79 ; CHECK: .att_syntax
96 ; CHECK: .att_syntax
101 ; CHECK: .att_syntax
123 ; CHECK: .att_syntax
155 ; CHECK: .att_syntax
/dports/devel/llvm10/llvm-10.0.1.src/test/CodeGen/X86/
H A Dms-inline-asm.ll12 ; CHECK: .att_syntax
24 ; CHECK: .att_syntax
38 ; CHECK: .att_syntax
61 ; CHECK: .att_syntax
79 ; CHECK: .att_syntax
96 ; CHECK: .att_syntax
101 ; CHECK: .att_syntax
123 ; CHECK: .att_syntax
155 ; CHECK: .att_syntax
/dports/devel/wasi-compiler-rt13/llvm-project-13.0.1.src/llvm/test/CodeGen/X86/
H A Dms-inline-asm.ll12 ; CHECK: .att_syntax
24 ; CHECK: .att_syntax
38 ; CHECK: .att_syntax
61 ; CHECK: .att_syntax
79 ; CHECK: .att_syntax
96 ; CHECK: .att_syntax
101 ; CHECK: .att_syntax
123 ; CHECK: .att_syntax
155 ; CHECK: .att_syntax
/dports/devel/llvm90/llvm-9.0.1.src/test/CodeGen/X86/
H A Dms-inline-asm.ll12 ; CHECK: .att_syntax
24 ; CHECK: .att_syntax
38 ; CHECK: .att_syntax
61 ; CHECK: .att_syntax
79 ; CHECK: .att_syntax
96 ; CHECK: .att_syntax
101 ; CHECK: .att_syntax
123 ; CHECK: .att_syntax
155 ; CHECK: .att_syntax
/dports/devel/tinygo/tinygo-0.14.1/llvm-project/llvm/test/CodeGen/X86/
H A Dms-inline-asm.ll12 ; CHECK: .att_syntax
24 ; CHECK: .att_syntax
38 ; CHECK: .att_syntax
61 ; CHECK: .att_syntax
79 ; CHECK: .att_syntax
96 ; CHECK: .att_syntax
101 ; CHECK: .att_syntax
123 ; CHECK: .att_syntax
155 ; CHECK: .att_syntax
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/llvm/llvm/test/CodeGen/X86/
H A Dms-inline-asm.ll12 ; CHECK: .att_syntax
24 ; CHECK: .att_syntax
38 ; CHECK: .att_syntax
61 ; CHECK: .att_syntax
79 ; CHECK: .att_syntax
96 ; CHECK: .att_syntax
101 ; CHECK: .att_syntax
123 ; CHECK: .att_syntax
155 ; CHECK: .att_syntax
/dports/devel/wasi-compiler-rt12/llvm-project-12.0.1.src/llvm/test/CodeGen/X86/
H A Dms-inline-asm.ll12 ; CHECK: .att_syntax
24 ; CHECK: .att_syntax
38 ; CHECK: .att_syntax
61 ; CHECK: .att_syntax
79 ; CHECK: .att_syntax
96 ; CHECK: .att_syntax
101 ; CHECK: .att_syntax
123 ; CHECK: .att_syntax
155 ; CHECK: .att_syntax
/dports/devel/llvm80/llvm-8.0.1.src/test/CodeGen/X86/
H A Dms-inline-asm.ll12 ; CHECK: .att_syntax
24 ; CHECK: .att_syntax
38 ; CHECK: .att_syntax
61 ; CHECK: .att_syntax
79 ; CHECK: .att_syntax
96 ; CHECK: .att_syntax
101 ; CHECK: .att_syntax
123 ; CHECK: .att_syntax
155 ; CHECK: .att_syntax
/dports/devel/llvm70/llvm-7.0.1.src/test/CodeGen/X86/
H A Dms-inline-asm.ll12 ; CHECK: .att_syntax
24 ; CHECK: .att_syntax
38 ; CHECK: .att_syntax
61 ; CHECK: .att_syntax
79 ; CHECK: .att_syntax
96 ; CHECK: .att_syntax
101 ; CHECK: .att_syntax
123 ; CHECK: .att_syntax
155 ; CHECK: .att_syntax

12345678910>>...17