| /llvm-project-15.0.7/llvm/test/tools/llvm-objdump/MachO/AArch64/ |
| H A D | macho-link-opt-hints.test | 1 RUN: llvm-objdump -m --link-opt-hints %p/Inputs/link-opt-hints.macho-aarch64 | FileCheck %s 2 RUN: llvm-otool -C %p/Inputs/link-opt-hints.macho-aarch64 | FileCheck %s 4 CHECK: Linker optimiztion hints (8 total bytes)
|
| /llvm-project-15.0.7/lldb/source/Host/common/ |
| H A D | UDPSocket.cpp | 69 struct addrinfo hints; in Connect() local 72 ::memset(&hints, 0, sizeof(hints)); in Connect() 73 hints.ai_family = kDomain; in Connect() 74 hints.ai_socktype = kType; in Connect() 75 …t err = ::getaddrinfo(host_port->hostname.c_str(), std::to_string(host_port->port).c_str(), &hints, in Connect()
|
| H A D | SocketAddress.cpp | 226 struct addrinfo hints; in GetAddressInfo() local 227 memset(&hints, 0, sizeof(hints)); in GetAddressInfo() 228 hints.ai_family = ai_family; in GetAddressInfo() 229 hints.ai_socktype = ai_socktype; in GetAddressInfo() 230 hints.ai_protocol = ai_protocol; in GetAddressInfo() 231 hints.ai_flags = ai_flags; in GetAddressInfo() 234 int err = ::getaddrinfo(hostname, servname, &hints, &service_info_list); in GetAddressInfo()
|
| /llvm-project-15.0.7/llvm/test/tools/llvm-objcopy/MachO/ |
| H A D | lc-linker-optimization-hint.s | 5 # RUN: llvm-objdump --macho --link-opt-hints - < %t.o > %tloh.txt 8 # CHECK: Linker optimiztion hints (8 total bytes) 12 # RUN: llvm-objdump --macho --link-opt-hints - < %t.copy.o | diff %tloh.txt -
|
| /llvm-project-15.0.7/polly/cmake/ |
| H A D | FindISL.cmake | 15 list(APPEND hints ${dir}) 18 find_library(lib NAMES ${libname} HINTS ${hints} NO_DEFAULT_PATH)
|
| /llvm-project-15.0.7/llvm/test/Transforms/LoopVectorize/ |
| H A D | explicit_outer_detection.ll | 5 ; vectorization hints are collected for vectorization instead of inner loops. 22 ; CHECK: LV: Loop hints: force=enabled width=4 interleave=0 25 ; CHECK-NOT: LV: Loop hints: force=? 74 ; CHECK: LV: Loop hints: force=enabled width=0 interleave=0 123 ; CHECK-NOT: LV: Loop hints: force=enabled 125 ; CHECK: LV: Loop hints: force=? 173 ; CHECK-NOT: LV: Loop hints: force=enabled 175 ; CHECK: LV: Loop hints: force=?
|
| H A D | nounroll.ll | 7 ; CHECK: LV: Loop hints: force=? width=0 interleave=1 34 ; CHECK: LV: Loop hints: force=? width=0 interleave=4 61 ; CHECK: LV: Loop hints: force=? width=0 interleave=1
|
| H A D | vect.omp.persistence.ll | 5 ; CHECK: LV: Loop hints: force=enabled
|
| /llvm-project-15.0.7/llvm/test/Transforms/LoopVectorize/AArch64/ |
| H A D | sve-strict-fadd-cost.ll | 2 ; RUN: opt < %s -loop-vectorize -debug -disable-output -force-ordered-reductions=true -hints-allow-… 5 ; RUN: opt < %s -loop-vectorize -debug -disable-output -force-ordered-reductions=true -hints-allow-… 8 ; RUN: opt < %s -loop-vectorize -debug -disable-output -force-ordered-reductions=true -hints-allow-…
|
| H A D | strict-fadd-cost.ll | 2 ; RUN: opt < %s -loop-vectorize -debug -disable-output -force-ordered-reductions=true -hints-allow-… 4 ; RUN: opt < %s -loop-vectorize -debug -disable-output -force-ordered-reductions=true -hints-allow-…
|
| /llvm-project-15.0.7/llvm/test/Transforms/LoopVectorize/X86/ |
| H A D | vect.omp.force.ll | 4 ; CHECK: LV: Loop hints: force=enabled 5 ; CHECK: LV: Loop hints: force=? 7 ; CHECK-NOT: LV: Loop hints: force=
|
| /llvm-project-15.0.7/clang-tools-extra/docs/clang-tidy/checks/modernize/ |
| H A D | use-noexcept.rst | 35 ``noexcept``. Fix-it hints will only be generated for non-throwing 57 Enabled by default, disabling will generate fix-it hints that remove
|
| /llvm-project-15.0.7/mlir/lib/Tools/mlir-pdll-lsp-server/ |
| H A D | LSPServer.cpp | 263 std::vector<InlayHint> hints; in onInlayHint() local 264 server.getInlayHints(params.textDocument.uri, params.range, hints); in onInlayHint() 265 reply(std::move(hints)); in onInlayHint()
|
| /llvm-project-15.0.7/llvm/test/CodeGen/SystemZ/ |
| H A D | load-and-test-RA-hints.mir | 6 # Test that regalloc hints are passed for compare with zero cases that can be 81 # CHECK-NEXT: hints: $r0l $r1l $r2l $r3l $r4l $r5l $r14l $r13l $r12l $r11l $r10l $r9l $r8l $r7l $r6l 84 # CHECK-NEXT: hints: $r0l $r1l $r2l $r3l $r4l $r5l $r14l $r13l $r12l $r11l $r10l $r9l $r8l $r7l $r6l
|
| /llvm-project-15.0.7/llvm/test/MC/ARM/ |
| H A D | thumb2-ldrb-ldrh.s | 5 @ preload hints).
|
| /llvm-project-15.0.7/mlir/lib/Dialect/OpenMP/IR/ |
| H A D | OpenMPDialect.cpp | 432 SmallVector<StringRef> hints; in printSynchronizationHint() local 434 hints.push_back("uncontended"); in printSynchronizationHint() 436 hints.push_back("contended"); in printSynchronizationHint() 438 hints.push_back("nonspeculative"); in printSynchronizationHint() 440 hints.push_back("speculative"); in printSynchronizationHint() 442 llvm::interleaveComma(hints, p); in printSynchronizationHint()
|
| /llvm-project-15.0.7/llvm/tools/llvm-objdump/ |
| H A D | OtoolOpts.td | 9 def C : Flag<["-"], "C">, HelpText<"print linker optimization hints">; 57 HelpText<"print two-level hints table">;
|
| /llvm-project-15.0.7/llvm/test/CodeGen/X86/ |
| H A D | insert-prefetch.ll | 1 ; RUN: llc < %s -x86-discriminate-memops -prefetch-hints-file=%S/insert-prefetch.afdo | FileCheck %s 2 ; RUN: llc < %s -x86-discriminate-memops -prefetch-hints-file=%S/insert-prefetch-other.afdo | FileC…
|
| /llvm-project-15.0.7/clang/test/CodeGen/ |
| H A D | builtins-arm64.c | 33 void hints(void) { in hints() function
|
| /llvm-project-15.0.7/llvm/test/CodeGen/AMDGPU/ |
| H A D | regalloc-fail-unsatisfiable-overlapping-tuple-hints.mir | 10 # The hints are trying to force allocation of overlapping vreg_256s 12 # and a vreg_64 use can be satisfied as long as the hints are ignored.
|
| /llvm-project-15.0.7/llvm/test/CodeGen/MIR/X86/ |
| H A D | simple-register-allocation-hints.mir | 2 # This test ensures that the MIR parser parses simple register allocation hints
|
| /llvm-project-15.0.7/clang-tools-extra/docs/clang-tidy/checks/misc/ |
| H A D | const-correctness.rst | 128 Provides fixit-hints for value types that automatically add ``const`` if its a single declaration. 148 Provides fixit-hints for reference types that automatically add ``const`` if its a single 168 Provides fixit-hints for pointers if their pointee is not changed. This does not analyze if the
|
| /llvm-project-15.0.7/clang-tools-extra/docs/ |
| H A D | ReleaseNotes.rst | 44 Inlay hints 47 - Provide hints for: 50 - Support for standard LSP 3.17 inlay hints protocol. 51 - Designator inlay hints are enabled by default. 83 - Provides hints using underlying functions in forwarded calls.
|
| /llvm-project-15.0.7/lld/COFF/ |
| H A D | DLL.h | 33 std::vector<Chunk *> hints; variable
|
| /llvm-project-15.0.7/clang-tools-extra/docs/clang-tidy/checks/readability/ |
| H A D | implicit-bool-conversion.rst | 33 In addition to issuing warnings, fix-it hints are provided to help solve the 82 The rules for generating fix-it hints are:
|