Home
last modified time | relevance | path

Searched refs:code (Results 326 – 350 of 4069) sorted by relevance

1...<<11121314151617181920>>...163

/llvm-project-15.0.7/llvm/docs/
H A DLibFuzzer.rst17 The code coverage
47 .. code-block:: c++
124 .. code-block:: console
132 .. code-block:: console
546 .. code-block:: c++
603 .. code-block:: c++
613 .. code-block:: c++
627 .. code-block:: bash
634 .. code-block:: bash
643 .. code-block:: c++
[all …]
H A DCMakePrimer.rst55 .. code-block:: cmake
65 .. code-block:: cmake
91 .. code-block:: cmake
104 .. code-block:: cmake
122 .. code-block:: cmake
138 .. code-block:: cmake
148 .. code-block:: cmake
218 .. code-block:: cmake
237 .. code-block:: cmake
246 .. code-block:: cmake
[all …]
H A DPasses.rst232 code.
435 resulting code.
682 .. code-block:: c++
701 .. code-block:: c++
839 .. code-block:: c++
843 code(i, j) code(i, j)
862 .. code-block:: c++
1061 code size or making it harder to reverse engineer code.
1076 code size or making it harder to reverse engineer code.
1099 code size or making it harder to reverse engineer code.
[all …]
/llvm-project-15.0.7/llvm/test/DebugInfo/Generic/
H A Dinline-no-debug-info.ll22 ; Debug location of the code in caller() and of the inlined code that did not
26 ; Debug location of the inlined code.
59 !1 = !DIFile(filename: "test.c", directory: "/code/llvm/build0")
62 !5 = !DIFile(filename: "test.c", directory: "/code/llvm/build0")
/llvm-project-15.0.7/llvm/test/tools/llvm-dwarfdump/X86/
H A Ddebug-names-verify-unhashed-names.s97 .byte 46 # Abbrev code
107 .byte 46 # Abbrev code
111 .byte 46 # Abbrev code
115 .byte 46 # Abbrev code
119 .byte 46 # Abbrev code
/llvm-project-15.0.7/openmp/docs/remarks/
H A DOMP121.rst24 .. code-block:: c++
41 .. code-block:: console
52 contain any code that prevents SPMD-mode execution.
54 .. code-block:: c++
70 .. code-block:: console
H A DOMP133.rst17 .. code-block:: c++
32 .. code-block:: console
44 .. code-block:: c++
60 .. code-block:: console
/llvm-project-15.0.7/polly/test/GPGPU/
H A Dscalar-writes-in-scop-requires-abort.ll1 ; RUN: opt %loadPolly -polly-acc-dump-code -polly-invariant-load-hoisting -polly-print-scops -disab…
4 ; RUN: -polly-acc-dump-code -polly-stmt-granularity=bb \
31 ; This test case checks that we generate correct code if PPCGCodeGeneration
34 ; There is a conditional branch which switches between the original code and
35 ; the new code. We try to set this conditional branch to branch on false.
/llvm-project-15.0.7/libcxx/src/
H A Dsystem_error.cpp50 error_category::equivalent(int code, const error_condition& condition) const noexcept in equivalent() argument
52 return default_error_condition(code) == condition; in equivalent()
56 error_category::equivalent(const error_code& code, int condition) const noexcept in equivalent() argument
58 return *this == code.category() && code.value() == condition; in equivalent()
/llvm-project-15.0.7/clang-tools-extra/docs/clang-tidy/checks/modernize/
H A Dloop-convert.rst28 .. code-block:: c++
52 .. code-block:: c++
65 .. code-block:: c++
77 .. code-block:: c++
100 .. code-block:: c++
177 .. code-block:: c++
188 .. code-block:: c++
206 .. code-block:: c++
223 .. code-block:: c++
240 .. code-block:: c++
[all …]
/llvm-project-15.0.7/llvm/test/DebugInfo/X86/
H A Ddwarfdump-header.s49 .byte 0x01 # Abbrev code
60 .byte 0x02 # Abbrev code
67 .byte 0x03 # Abbrev code
74 .byte 0x04 # Abbrev code
85 .byte 0x01 # Abbrev code
96 .byte 0x02 # Abbrev code
103 .byte 0x03 # Abbrev code
H A Ddwarfdump-rnglists.s14 .byte 0x01 # Abbrev code
23 .byte 0x02 # Abbrev code
37 .byte 0x01 # Abbrev code
54 .byte 1 # Abbreviation code
68 .byte 2 # Abbreviation code
81 .byte 2 # Abbreviation code
94 .byte 1 # Abbreviation code
111 .byte 1 # Abbreviation code
/llvm-project-15.0.7/lldb/test/Shell/SymbolFile/DWARF/x86/
H A DDW_TAG_GNU_call_site-DW_AT_low_pc.s121 .uleb128 0x1 # (abbrev code)
138 .uleb128 0x2 # (abbrev code)
157 .uleb128 0x3 # (abbrev code)
166 .uleb128 0x4 # (abbrev code)
175 .uleb128 0x5 # (abbrev code)
186 .uleb128 0x6 # (abbrev code)
203 .uleb128 0x7 # (abbrev code)
/llvm-project-15.0.7/llvm/docs/tutorial/MyFirstLanguageFrontend/
H A Dindex.rst26 code.
31 ideas, showing and explaining the code for it all along the way,
33 encourage that you *work with this code* - make a copy and hack it up and
39 principles. For example, the code uses global variables
92 of (non-comment, non-blank) lines of code. With this small amount of
93 code, we'll have built up a nice little compiler for a non-trivial
94 language including a hand-written lexer, parser, AST, as well as code
97 target for language designers and others who need high performance code
/llvm-project-15.0.7/clang/docs/
H A DObjectiveCLiterals.rst43 .. code-block:: objc
76 .. code-block:: objc
96 .. code-block:: objc
118 .. code-block:: objc
125 .. code-block:: objc
156 .. code-block:: objc
175 .. code-block:: objc
189 .. code-block:: objc
207 .. code-block:: objc
236 .. code-block:: objc
[all …]
/llvm-project-15.0.7/clang/test/Index/
H A Dcomplete-block-properties.m39 // RUN: c-index-test -code-completion-at=%s:34:8 %s | FileCheck -check-prefix=CHECK-CC1 %s
40 // RUN: c-index-test -code-completion-at=%s:35:33 %s | FileCheck -check-prefix=CHECK-CC1 %s
41 // RUN: c-index-test -code-completion-at=%s:36:21 %s | FileCheck -check-prefix=CHECK-CC1 %s
68 // RUN: c-index-test -code-completion-at=%s:65:6 %s | FileCheck -check-prefix=CHECK-CC2 %s
85 // RUN: c-index-test -code-completion-at=%s:82:19 %s | FileCheck -check-prefix=CHECK-CC3 %s
93 // RUN: c-index-test -code-completion-at=%s:91:9 %s | FileCheck -check-prefix=CHECK-CC4 %s
/llvm-project-15.0.7/llvm/test/CodeGen/AMDGPU/
H A Dhsa-metadata-queue-ptr-v5.ll1 ; RUN: llc -mtriple=amdgcn-amd-amdhsa -mcpu=gfx700 --amdhsa-code-object-version=5 -filetype=obj -o …
2 ; RUN: llc -mtriple=amdgcn-amd-amdhsa -mcpu=gfx803 --amdhsa-code-object-version=5 -filetype=obj -o …
3 ; RUN: llc -mtriple=amdgcn-amd-amdhsa -mcpu=gfx900 --amdhsa-code-object-version=5 -filetype=obj -o …
5 ; RUN: llc -mtriple=amdgcn-amd-amdhsa -mcpu=gfx700 --amdhsa-code-object-version=5 < %s | FileCheck …
6 ; RUN: llc -mtriple=amdgcn-amd-amdhsa -mcpu=gfx803 --amdhsa-code-object-version=5 < %s | FileCheck …
7 ; RUN: llc -mtriple=amdgcn-amd-amdhsa -mcpu=gfx900 --amdhsa-code-object-version=5 < %s | FileCheck …
/llvm-project-15.0.7/llvm/test/CodeGen/PowerPC/
H A Dlower-globaladdr32-aix.ll1 ; RUN: llc -mtriple powerpc-ibm-aix-xcoff -code-model=small \
5 ; RUN: not --crash llc -mtriple powerpc-ibm-aix-xcoff -code-model=medium \
8 ; RUN: llc -mtriple powerpc-ibm-aix-xcoff -code-model=large \
26 ; MEDIUM: Medium code model is not supported on AIX.
H A Dmcm-3.ll1 ; RUN: llc -relocation-model=static -verify-machineinstrs -mcpu=pwr7 -O0 -code-model=medium <%s | F…
2 ; RUN: llc -relocation-model=static -verify-machineinstrs -mcpu=pwr7 -O0 -code-model=large <%s | Fi…
4 ; Test correct code generation for medium and large code model
H A Dlower-globaladdr64-aix.ll1 ; RUN: llc -mtriple powerpc64-ibm-aix-xcoff -code-model=small \
5 ; RUN: not --crash llc -mtriple powerpc64-ibm-aix-xcoff -code-model=medium \
8 ; RUN: llc -mtriple powerpc64-ibm-aix-xcoff -code-model=large \
26 ; MEDIUM: Medium code model is not supported on AIX.
/llvm-project-15.0.7/llvm/bindings/python/
H A DREADME.txt15 All test code is location in llvm/tests. Tests are written as classes
40 You should strive for high code coverage. To see current coverage:
45 Then open cover/index.html in your browser of choice to see the code coverage.
50 All code should pass PyFlakes. First, install PyFlakes:
/llvm-project-15.0.7/clang-tools-extra/clangd/unittests/
H A DSourceCodeTests.cpp292 SourceManagerForFile Owner("foo.cpp", Source.code()); in TEST()
362 auto TU = TestTU::withCode(A.code()); in tryWord()
536 TestTU TU = TestTU::withCode(Code.code()); in TEST()
549 TestTU TU = TestTU::withCode(Code.code()); in TEST()
623 ParsedAST AST = TestTU::withCode(Test.code()).build(); in TEST()
624 llvm::errs() << Test.code(); in TEST()
658 auto TU = TestTU::withCode(Test.code()); in TEST()
681 auto TU = TestTU::withCode(Test.code()); in TEST()
750 Test.code(), Case.FullyQualifiedName, in TEST()
753 << Test.code(); in TEST()
[all …]
/llvm-project-15.0.7/llvm/test/CodeGen/Hexagon/
H A Daddrmode-opt-assert.mir5 # hexagon backend doesn't crash when the following code is presented to it.
7 # This is a testcase reduced from code generated by the Halide compiler for a
8 # Halide pipeline. This code was causing the pass 'amode-opt' to crash because
/llvm-project-15.0.7/clang-tools-extra/docs/clang-tidy/checks/bugprone/
H A Dmisplaced-pointer-arithmetic-in-alloc.rst11 Example code:
13 .. code-block:: c
23 .. code-block:: c
/llvm-project-15.0.7/llvm/test/MachineVerifier/
H A Dgeneric-vreg-undef-use.mir14 ; CHECK: *** Bad machine code: Generic virtual register use cannot be undef ***
18 ; CHECK: *** Bad machine code: Generic virtual register use cannot be undef ***
22 ; CHECK: *** Bad machine code: Generic virtual register use cannot be undef ***

1...<<11121314151617181920>>...163