| /llvm-project-15.0.7/llvm/test/MC/RISCV/ |
| H A D | rvi-pseudos-invalid.s | 4 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 D | function-call-invalid.s | 3 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 D | tail-call-invalid.s | 4 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 D | lla-invalid.s | 4 # 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 D | check-depends.pl | 333 my $bare; 338 "bare" => \$bare, 375 if ( $bare ) {
|
| /llvm-project-15.0.7/llvm/test/FileCheck/ |
| H A D | lit.local.cfg | 13 # ; 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 D | bare-ptr-call-conv.mlir | 1 …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 D | FormatGen.cpp | 428 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 D | comment.ll | 5 ; 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 D | select-bare-flt.ll | 4 ;; Test the bare single-precision floating-point values selection:
|
| H A D | select-bare-dbl.ll | 4 ;; Test the bare double-precision floating-point values selection:
|
| H A D | select-bare-int.ll | 4 ;; 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 D | instrument-objc-method.m | 2 …debug-info-kind=standalone -emit-llvm -o - %s -finstrument-function-entry-bare | FileCheck -check-…
|
| /llvm-project-15.0.7/llvm/docs/ |
| H A D | HowToCrossCompileBuiltinsOnArm.rst | 223 * 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 D | func-memref.mlir | 2 // 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 D | func-memref-return.mlir | 2 // 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 D | test-inline-asm-vector-avx512.mlir | 1 …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 D | bare-minimum-psets.td | 3 // Test to check the bare minimum pressure sets.
|
| /llvm-project-15.0.7/mlir/docs/ |
| H A D | LangRef.md | 200 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 D | none-macho.ll | 88 ; Even bare-metal PIC needs GOT-like behaviour, in principle. Depends a bit on
|
| /llvm-project-15.0.7/llvm/docs/CommandGuide/ |
| H A D | llvm-config.rst | 104 Similar to **--libs**, but prints the bare filenames of the libraries
|
| /llvm-project-15.0.7/clang/docs/ |
| H A D | ItaniumMangleAbiTags.rst | 96 available. Also, for functions, all tags from the <bare-function-type>
|
| /llvm-project-15.0.7/bolt/docs/ |
| H A D | RuntimeLibrary.md | 26 …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 D | Affine.md | 99 | 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 D | AVRDevices.td | 23 // The device has SRAM, and supports the bare minimum of 155 // The device has at least the bare minimum that **every** single AVR
|