Home
last modified time | relevance | path

Searched refs:APPLY (Results 1 – 8 of 8) sorted by relevance

/llvm-project-15.0.7/lld/test/ELF/
H A Driscv-ifunc-nonpreemptible.s5 # RUN: llvm-readobj -r -x .got.plt %t.32 | FileCheck --check-prefixes=RELOC32,NO-APPLY-RELOC32 %s
6 # RUN: llvm-readobj -r -x .got.plt %t.32-apply | FileCheck --check-prefixes=RELOC32,APPLY-RELOC32 %s
13 # RUN: llvm-readobj -r -x .got.plt %t.64 | FileCheck --check-prefixes=RELOC64,NO-APPLY-RELOC64 %s
14 # RUN: llvm-readobj -r -x .got.plt %t.64-apply | FileCheck --check-prefixes=RELOC64,APPLY-RELOC64 %s
22 # NO-APPLY-RELOC32: 0x00003220 00000000
23 # APPLY-RELOC32: 0x00003220 7c110000
43 # NO-APPLY-RELOC64: 0x00003380 00000000 00000000
44 # APPLY-RELOC64: 0x00003380 60120000 00000000
H A Dx86-64-gotpc-relax.s6 # RUN: llvm-readobj -x .got.plt -r %t1 | FileCheck --check-prefixes=RELOC,NO-APPLY-DYNAMIC-RELOCS %s
8 # RUN: llvm-readobj -x .got.plt -r %t1 | FileCheck --check-prefixes=RELOC,APPLY-DYNAMIC-RELOCS %s
23 # NO-APPLY-DYNAMIC-RELOCS-NEXT: 0x00202220 00000000 00000000
24 # APPLY-DYNAMIC-RELOCS-NEXT: 0x00202220 72112000 00000000
H A Dapply-dynamic-relocs.s7 # RUN: llvm-readobj -S --section-data -l -r %t.so | FileCheck -check-prefixes=CHECK,APPLY %s
17 # APPLY-NEXT: 0000: 30220000 00000000 |
/llvm-project-15.0.7/llvm/test/TableGen/GICombinerEmitter/
H A Dmatch-tree.td34 (apply [{ APPLY }])>;
40 (apply [{ APPLY }])>;
45 (apply [{ APPLY }])>;
51 (apply [{ APPLY }])>;
56 (apply [{ APPLY }])>;
61 (apply [{ APPLY }])>;
67 (apply [{ APPLY }])>;
73 (apply [{ APPLY }])>;
H A Dparse-match-pattern.td29 (apply [{ APPLY }])>;
54 (apply [{ APPLY }])>;
84 (apply [{ APPLY }])>;
128 (apply [{ APPLY }])>;
171 (apply [{ APPLY }])>;
/llvm-project-15.0.7/clang/test/Misc/
H A Dreduced-diags-macros.cpp31 #define APPLY(f,x,y) x f y macro
38 int r = APPLY(+,ff,1);
H A Dcaret-diags-macros.c225 #define APPLY(macro, arg) macro arg macro
229 APPLY(DECLARE_HELPER, ()) in use_evil_macros()
/llvm-project-15.0.7/clang-tools-extra/test/clang-tidy/checkers/bugprone/
H A Dswapped-arguments.cpp43 #define APPLY(f, x, y) f(x, y) in foo() macro
44 APPLY(F, 1.0, 3); in foo()