Home
last modified time | relevance | path

Searched refs:bare (Results 1 – 25 of 50) sorted by relevance

12

/llvm-project-15.0.7/llvm/test/MC/RISCV/
H A Drvi-pseudos-invalid.s4 lla x1, 1234 # CHECK: :[[@LINE]]:9: error: operand must be a bare symbol name
5 lla x1, %pcrel_hi(1234) # CHECK: :[[@LINE]]:9: error: operand must be a bare symbol name
9 lla x1, %hi(1234) # CHECK: :[[@LINE]]:9: error: operand must be a bare symbol name
10 lla x1, %lo(1234) # CHECK: :[[@LINE]]:9: error: operand must be a bare symbol name
11 lla x1, %hi(foo) # CHECK: :[[@LINE]]:9: error: operand must be a bare symbol name
12 lla x1, %lo(foo) # CHECK: :[[@LINE]]:9: error: operand must be a bare symbol name
14 la x1, 1234 # CHECK: :[[@LINE]]:8: error: operand must be a bare symbol name
19 la x1, %hi(1234) # CHECK: :[[@LINE]]:8: error: operand must be a bare symbol name
21 la x1, %hi(foo) # CHECK: :[[@LINE]]:8: error: operand must be a bare symbol name
22 la x1, %lo(foo) # CHECK: :[[@LINE]]:8: error: operand must be a bare symbol name
[all …]
H A Dfunction-call-invalid.s3 call 1234 # CHECK: :[[@LINE]]:6: error: operand must be a bare symbol name
4 call %pcrel_hi(1234) # CHECK: :[[@LINE]]:6: error: operand must be a bare symbol name
5 call %pcrel_lo(1234) # CHECK: :[[@LINE]]:6: error: operand must be a bare symbol name
6 call %pcrel_hi(foo) # CHECK: :[[@LINE]]:6: error: operand must be a bare symbol name
7 call %pcrel_lo(foo) # CHECK: :[[@LINE]]:6: error: operand must be a bare symbol name
8 call %hi(1234) # CHECK: :[[@LINE]]:6: error: operand must be a bare symbol name
9 call %lo(1234) # CHECK: :[[@LINE]]:6: error: operand must be a bare symbol name
10 call %hi(foo) # CHECK: :[[@LINE]]:6: error: operand must be a bare symbol name
11 call %lo(foo) # CHECK: :[[@LINE]]:6: error: operand must be a bare symbol name
12 call foo, bar # CHECK: :[[@LINE]]:6: error: operand must be a bare symbol name
H A Dtail-call-invalid.s4 tail 1234 # CHECK: :[[@LINE]]:6: error: operand must be a bare symbol name
5 tail %pcrel_hi(1234) # CHECK: :[[@LINE]]:6: error: operand must be a bare symbol name
6 tail %pcrel_lo(1234) # CHECK: :[[@LINE]]:6: error: operand must be a bare symbol name
7 tail %pcrel_hi(foo) # CHECK: :[[@LINE]]:6: error: operand must be a bare symbol name
8 tail %pcrel_lo(foo) # CHECK: :[[@LINE]]:6: error: operand must be a bare symbol name
9 tail %hi(1234) # CHECK: :[[@LINE]]:6: error: operand must be a bare symbol name
10 tail %lo(1234) # CHECK: :[[@LINE]]:6: error: operand must be a bare symbol name
11 tail %hi(foo) # CHECK: :[[@LINE]]:6: error: operand must be a bare symbol name
12 tail %lo(foo) # CHECK: :[[@LINE]]:6: error: operand must be a bare symbol name
H A Dlla-invalid.s4 # Non bare symbols must be rejected
5 lla a2, %lo(a_symbol) # CHECK: :[[@LINE]]:9: error: operand must be a bare symbol name
6 lla a2, %hi(a_symbol) # CHECK: :[[@LINE]]:9: error: operand must be a bare symbol name
/llvm-project-15.0.7/openmp/runtime/tools/
H A Dcheck-depends.pl333 my $bare;
338 "bare" => \$bare,
375 if ( $bare ) {
/llvm-project-15.0.7/llvm/test/FileCheck/
H A Dlit.local.cfg13 # ; Only FileCheck's exit status affects test results, so a bare FileCheck
19 # ; Test FileCheck itself, but only examine its exit status, so a bare
/llvm-project-15.0.7/mlir/test/mlir-cpu-runner/
H A Dbare-ptr-call-conv.mlir1 …cf,convert-arith-to-llvm),convert-memref-to-llvm,convert-func-to-llvm{use-bare-ptr-memref-call-con…
3 // Verify bare pointer memref calling convention. `simple_add1_add2_test`
/llvm-project-15.0.7/mlir/tools/mlir-tblgen/
H A DFormatGen.cpp428 StringRef bare = "_:,=<>()[]{}?+*"; in isValidLiteral() local
429 if (isalpha(front) || bare.contains(front)) in isValidLiteral()
432 emitError("single character literal must be a letter or one of '" + bare + in isValidLiteral()
/llvm-project-15.0.7/llvm/test/Assembler/
H A Dcomment.ll5 ; The bare version of this file should not have any #uses lines.
/llvm-project-15.0.7/llvm/test/CodeGen/LoongArch/ir-instruction/
H A Dselect-bare-flt.ll4 ;; Test the bare single-precision floating-point values selection:
H A Dselect-bare-dbl.ll4 ;; Test the bare double-precision floating-point values selection:
H A Dselect-bare-int.ll4 ;; Exercise the bare integers 'select' LLVM IR: https://llvm.org/docs/LangRef.html#select-instructi…
/llvm-project-15.0.7/clang/test/CodeGen/
H A Dinstrument-objc-method.m2 …debug-info-kind=standalone -emit-llvm -o - %s -finstrument-function-entry-bare | FileCheck -check-…
/llvm-project-15.0.7/llvm/docs/
H A DHowToCrossCompileBuiltinsOnArm.rst223 * There isn't a ``qemu-arm`` user-mode emulator for bare-metal systems. The ``qemu-system-arm`` can…
278 You will need a bare metal sysroot such as that provided by the GNU ARM
283 * ``-DBAREMETAL_ARMV6M_SYSROOT=/path/to/bare/metal/toolchain/arm-none-eabi``
284 * ``-DBAREMETAL_ARMV7M_SYSROOT=/path/to/bare/metal/toolchain/arm-none-eabi``
285 * ``-DBAREMETAL_ARMV7EM_SYSROOT=/path/to/bare/metal/toolchain/arm-none-eabi``
/llvm-project-15.0.7/mlir/test/Conversion/FuncToLLVM/
H A Dfunc-memref.mlir2 // RUN: mlir-opt -pass-pipeline="func.func(convert-arith-to-llvm),convert-func-to-llvm{use-bare-ptr…
54 // Unranked memrefs are currently not supported in the bare-ptr calling
H A Dfunc-memref-return.mlir2 // RUN: mlir-opt -convert-func-to-llvm='use-bare-ptr-memref-call-conv=1' -split-input-file %s | Fi…
/llvm-project-15.0.7/mlir/test/Integration/Dialect/Vector/CPU/X86Vector/
H A Dtest-inline-asm-vector-avx512.mlir1 …onvert-vector-to-llvm -convert-memref-to-llvm -convert-func-to-llvm='use-bare-ptr-memref-call-con…
/llvm-project-15.0.7/llvm/test/TableGen/
H A Dbare-minimum-psets.td3 // Test to check the bare minimum pressure sets.
/llvm-project-15.0.7/mlir/docs/
H A DLangRef.md200 bare-id ::= (letter|[_]) (letter|digit|[_$.])*
201 bare-id-list ::= bare-id (`,` bare-id)*
203 alias-name :: = bare-id
294 custom-operation ::= bare-id custom-operation-format
686 dialect-namespace ::= bare-id
741 attribute-entry ::= (bare-id | string-literal) `=` attribute-value
804 dialect-namespace ::= bare-id
/llvm-project-15.0.7/llvm/test/CodeGen/ARM/
H A Dnone-macho.ll88 ; Even bare-metal PIC needs GOT-like behaviour, in principle. Depends a bit on
/llvm-project-15.0.7/llvm/docs/CommandGuide/
H A Dllvm-config.rst104 Similar to **--libs**, but prints the bare filenames of the libraries
/llvm-project-15.0.7/clang/docs/
H A DItaniumMangleAbiTags.rst96 available. Also, for functions, all tags from the <bare-function-type>
/llvm-project-15.0.7/bolt/docs/
H A DRuntimeLibrary.md26 …les, anything requiring fancy linker features will break. We only support bare bones .text, .data …
/llvm-project-15.0.7/mlir/docs/Dialects/
H A DAffine.md99 | bare-id
113 expected to be positive. `bare-id` is an identifier which must have type
215 | bare-id
/llvm-project-15.0.7/llvm/lib/Target/AVR/
H A DAVRDevices.td23 // The device has SRAM, and supports the bare minimum of
155 // The device has at least the bare minimum that **every** single AVR

12