Home
last modified time | relevance | path

Searched refs:references (Results 1 – 25 of 456) sorted by relevance

12345678910>>...19

/llvm-project-15.0.7/clang/test/SemaHLSL/
H A Dprohibit_reference.hlsl3 int& bark(int); // expected-error {{references are unsupported in HLSL}}
4 void meow(int&); // expected-error {{references are unsupported in HLSL}}
5 void chirp(int &&); // expected-error {{references are unsupported in HLSL}}
6 // expected-warning@-1 {{rvalue references are a C++11 extension}}
15 int &Y = X; // expected-error {{references are unsupported in HLSL}}
18 int roar(Foo &F) { // expected-error {{references are unsupported in HLSL}}
/llvm-project-15.0.7/clang/test/SemaOpenCLCXX/
H A Dreferences.clcpp16 //expected-error@-2{{references to functions are not allowed}}
23 //expected-error@-2{{references to functions are not allowed}}
27 //expected-error@-2{{references to functions are not allowed}}
32 //expected-error@-2{{references to functions are not allowed}}
36 //expected-error@-2{{references to functions are not allowed}}
/llvm-project-15.0.7/lld/test/ELF/
H A Dppc64-reloc-addr-err.s12 # OVERFLOW1: relocation R_PPC64_ADDR16 out of range: -32769 is not in [-32768, 65535]; references f…
13 …cation R_PPC64_ADDR32 out of range: -2147483649 is not in [-2147483648, 4294967295]; references foo
16 # OVERFLOW2: relocation R_PPC64_ADDR16 out of range: 65536 is not in [-32768, 65535]; references foo
17 …ocation R_PPC64_ADDR32 out of range: 4294967296 is not in [-2147483648, 4294967295]; references foo
H A Dzdefs.s4 ## Unresolved references from object files are allowed by default for -shared.
7 ## -z defs disallows unresolved references.
12 ## -z undefs allows unresolved references.
H A Dx86-64-reloc-error.s9 …xt+0x1): relocation R_X86_64_32 out of range: 68719476736 is not in [0, 4294967295]; references big
11 …ion R_X86_64_32S out of range: -281474976710656 is not in [-2147483648, 2147483647]; references foo
H A Di386-reloc-16.s10 # OVERFLOW1: relocation R_386_16 out of range: -32769 is not in [-32768, 65535]; references a
14 # OVERFLOW2: relocation R_386_16 out of range: 65536 is not in [-32768, 65535]; references b
H A Di386-reloc-8.s10 # OVERFLOW1: relocation R_386_8 out of range: -129 is not in [-128, 255]; references a
14 # OVERFLOW2: relocation R_386_8 out of range: 256 is not in [-128, 255]; references b
H A Daarch64-movw-error.s39 …location R_AARCH64_TLSLE_MOVW_TPREL_G0 out of range: 65552 is not in [-65536, 65535]; references v1
41 …H64_TLSLE_MOVW_TPREL_G1 out of range: 4295032848 is not in [-4294967296, 4294967295]; references v2
43 …TPREL_G2 out of range: 281479271743496 is not in [-281474976710656, 281474976710655]; references v3
/llvm-project-15.0.7/llvm/test/Assembler/
H A D2002-04-29-NameBinding.ll1 ; There should be NO references to the global v1. The local v1 should
2 ; have all of the references!
5 ; no references to it!
/llvm-project-15.0.7/clang/test/SemaObjC/
H A Darc-unavailable-for-weakref.m12 __weak sub *w2; // expected-error {{class is incompatible with __weak references}}
14 __weak NSOptOut1072 *ns1; // expected-error {{class is incompatible with __weak references}}
19 // expected-error {{class is incompatible with __weak references}} \
60 …{synthesizing __weak instance variable of type 'NSFont *', which does not support weak references}}
69 …{synthesizing __weak instance variable of type 'NSFont *', which does not support weak references}}
80 …{synthesizing __weak instance variable of type 'NSFont *', which does not support weak references}}
H A Darc-no-runtime.m5 …ot create __weak reference because the current deployment target does not support weak references}}
15 …t synthesize weak property because the current deployment target does not support weak references}}
/llvm-project-15.0.7/lld/docs/ELF/
H A Dwarn_backrefs.rst8 right maintaining the set of undefined symbol references from the files loaded
12 set of undefined symbol references. When all resolving definitions have been
20 references, the archives can be ordered in such a way that there are no
21 backward references. If there are cyclic references then the ``--start-group``
27 still search that archive for resolving any undefined references. This means
94 among system libraries (e.g. ``-lc __isnanl references -lm``, ``-lc
95 _IO_funlockfile references -lpthread``, ``-lc __gcc_personality_v0 references
96 -lgcc_eh``, and ``-lpthread _Unwind_GetCFA references -lunwind``).
/llvm-project-15.0.7/clang/utils/
H A DFindSpecRefs773 def buildRefTree(references): argument
785 for ref in references:
816 references = []
824 references.extend(list(scanFile(fullpath, filename)))
826 references.extend(list(scanFile(root, root)))
828 refTree = buildRefTree(references)
831 for ref in references:
836 print 'Found %d references.'%(len(references),)
/llvm-project-15.0.7/llvm/docs/HistoricalNotes/
H A D2001-02-13-Reference-MemoryResponse.txt9 > references: constrained pointers that cannot be manipulated: added and
14 > C++ pointers could be promoted to references in the LLVM
18 You're right, having references would be useful. Even for C++ the *static*
19 compiler could generate references instead of pointers with fairly
26 > 2. Our "implicit" memory references in assembly language:
H A D2001-02-13-Reference-Memory.txt18 references: constrained pointers that cannot be manipulated: added and
23 C++ pointers could be promoted to references in the LLVM
26 2. Our "implicit" memory references in assembly language:
35 I'm tempted to make memory references explicit in both the assembly and
/llvm-project-15.0.7/llvm/test/DebugInfo/X86/
H A Dsections-as-references-cu-offset.ll1 ; Test that references to CU are 4 bytes long when the target is 64-bit
2 ; and -dwarf-sections-as-references=Enable is specified.
4 ; RUN: llc -filetype=asm -mtriple=x86_64-linux-gnu -dwarf-sections-as-references=Enable < %s \
/llvm-project-15.0.7/clang/test/Analysis/
H A Dmisc-ps-region-store.mm9 // Test basic handling of references.
20 // Test basic handling of references with Objective-C classes.
33 // Basic test of C++ references with Objective-C pointers.
/llvm-project-15.0.7/clang-tools-extra/clang-tidy/bugprone/
H A DSpuriouslyWakeUpFunctionsCheck.cpp35 declRefExpr(to(varDecl(hasType(references(recordDecl( in registerMatchers()
42 declRefExpr(to(varDecl(hasType(references(recordDecl( in registerMatchers()
49 declRefExpr(to(varDecl(hasType(references(recordDecl( in registerMatchers()
/llvm-project-15.0.7/lld/test/MachO/invalid/
H A Drange-check.s9 …l _main+0xd): relocation UNSIGNED is out of range: [[#]] is not in [0, 4294967295]; references _foo
10 …3): relocation GOT_LOAD is out of range: [[#]] is not in [-2147483648, 2147483647]; references _foo
11 # CHECK-DAG: error: stub is out of range: [[#]] is not in [-2147483648, 2147483647]; references _bar
H A Dcompact-unwind-bad-reloc.s5 # CHECK: error: {{.*}}bad-function.o:(__compact_unwind+0x0) references section __data which is not …
6 # CHECK: error: {{.*}}bad-function.o:(__compact_unwind+0x20) references section __data which is not…
/llvm-project-15.0.7/mlir/lib/Tools/tblgen-lsp-server/
H A DTableGenServer.cpp119 SmallVector<SMRange> references; member
192 sym->references.push_back(refLoc); in initialize()
261 std::vector<lsp::Location> &references);
394 std::vector<lsp::Location> &references) { in findReferencesOf() argument
400 references.push_back(getLocationFromLoc(sourceMgr, symbol->defLoc, uri)); in findReferencesOf()
401 for (SMRange refLoc : symbol->references) in findReferencesOf()
402 references.push_back(getLocationFromLoc(sourceMgr, refLoc, uri)); in findReferencesOf()
502 std::vector<Location> &references) { in findReferencesOf() argument
505 fileIt->second->findReferencesOf(uri, pos, references); in findReferencesOf()
/llvm-project-15.0.7/lld/test/MachO/
H A Dlto-archive.ll10 ; RUN: llvm-mc -filetype=obj -triple=x86_64-apple-darwin %t/references-foo.s -o %t/references-foo.o
12 ; RUN: %lld -lSystem %t/references-foo.o %t/foo.a -o /dev/null -why_load | FileCheck %s --check-pre…
68 ;--- references-foo.s
/llvm-project-15.0.7/mlir/test/IR/
H A Dtest-symbol-uses.mlir3 // Symbol references to the module itself don't affect uses of symbols within
12 // expected-remark@below {{symbol contains 2 nested references}}
48 // expected-remark@below {{symbol contains 2 nested references}}
/llvm-project-15.0.7/clang/test/SemaObjCXX/
H A Darc-unavailable-for-weakref.mm12 __weak sub *w2; // expected-error {{class is incompatible with __weak references}}
14 __weak NSOptOut1072 *ns1; // expected-error {{class is incompatible with __weak references}}
19 // expected-error {{class is incompatible with __weak references}} \
/llvm-project-15.0.7/clang-tools-extra/docs/clang-tidy/checks/bugprone/
H A Ddangling-handle.rst6 Detect dangling references in value handles like ``std::string_view``.
7 These dangling references can be a result of constructing handles from temporary

12345678910>>...19