| /llvm-project/lldb/source/Host/common/ |
| H A D | UDPSocket.cpp | 65 struct addrinfo hints; in Connect() 68 ::memset(&hints, 0, sizeof(hints)); in Connect() 69 hints.ai_family = kDomain; in Connect() local 70 hints.ai_socktype = kType; in Connect() 71 int err = ::getaddrinfo(host_port->hostname.c_str(), std::to_string(host_port->port).c_str(), &hints, in Connect() 76 "getaddrinfo(%s, %d, &hints, &info) returned error %i (%S)", in Connect() 78 "getaddrinfo(%s, %d, &hints, &info) returned error %i (%s)", in Connect()
|
| H A D | SocketAddress.cpp | 228 struct addrinfo hints; in GetAddressInfo() local 229 memset(&hints, 0, sizeof(hints)); in GetAddressInfo() 230 hints.ai_family = ai_family; in GetAddressInfo() 231 hints.ai_socktype = ai_socktype; in GetAddressInfo() 232 hints.ai_protocol = ai_protocol; in GetAddressInfo() 233 hints.ai_flags = ai_flags; in GetAddressInfo() 236 int err = ::getaddrinfo(hostname, servname, &hints, &service_info_list); in GetAddressInfo()
|
| /llvm-project/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/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/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
|
| /llvm-project/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/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/llvm/test/Analysis/BasicAA/ |
| H A D | separate_storage-alias-sets.ll | 2 ; separate storage hints. This lets alias analysis users (such as the alias set 3 ; tracker) who can't be context-sensitive still get the benefits of hints.
|
| /llvm-project/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/mlir/lib/Tools/mlir-pdll-lsp-server/ |
| H A D | LSPServer.cpp | 265 std::vector<InlayHint> hints; in onInlayHint() local 266 server.getInlayHints(params.textDocument.uri, params.range, hints); in onInlayHint() 267 reply(std::move(hints)); in onInlayHint()
|
| /llvm-project/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/llvm/test/Transforms/LoopVectorize/AArch64/ |
| H A D | sve-strict-fadd-cost.ll | 2 ; RUN: opt < %s -passes=loop-vectorize -debug -disable-output -force-ordered-reductions=true -hints-allow-reordering=false \ 4 ; RUN: opt < %s -passes=loop-vectorize -debug -disable-output -force-ordered-reductions=true -hints-allow-reordering=false \ 7 ; RUN: opt < %s -passes=loop-vectorize -debug -disable-output -force-ordered-reductions=true -hints-allow-reordering=false \
|
| H A D | strict-fadd-cost.ll | 2 ; RUN: opt < %s -passes=loop-vectorize -debug -disable-output -force-ordered-reductions=true -hints… 4 ; RUN: opt < %s -passes=loop-vectorize -debug -disable-output -force-ordered-reductions=true -hints…
|
| /llvm-project/llvm/test/MC/ARM/ |
| H A D | thumb2-ldrb-ldrh.s | 5 @ preload hints).
|
| /llvm-project/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/llvm/tools/llvm-objdump/ |
| H A D | OtoolOpts.td | 9 def C : Flag<["-"], "C">, HelpText<"print linker optimization hints">; 60 HelpText<"print two-level hints table">;
|
| /llvm-project/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/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/clang-tools-extra/clangd/test/ |
| H A D | GH75115.test | 10 // CHECK-NEXT: Building inlay hints
|
| /llvm-project/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/clang/test/CodeGen/ |
| H A D | builtins-arm64.c | 33 void hints(void) { in hints() function
|
| /llvm-project/clang/test/Modules/ |
| H A D | autolink_private_module.m | 3 // Test that autolink hints for frameworks don't use the private module name.
|
| /llvm-project/llvm/test/Transforms/LoopVectorize/RISCV/ |
| H A D | ordered-reduction.ll | 2 ; RUN: opt -passes=loop-vectorize -hints-allow-reordering=false -S < %s | FileCheck %s --check-pref… 4 ; RUN: opt -passes=loop-vectorize -force-ordered-reductions=false -hints-allow-reordering=false -S … 5 ; RUN: opt -passes=loop-vectorize -force-ordered-reductions=true -hints-allow-reordering=false -S <…
|
| /llvm-project/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:
|