Home
last modified time | relevance | path

Searched +full:- +full:- +full:user (Results 1 – 25 of 1118) sorted by relevance

12345678910>>...45

/llvm-project/llvm/test/CodeGen/X86/
H A Dx86-64-intrcc-uintr.ll1 ; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py UTC_ARGS: --no_x86_sc…
2 ; RUN: llc < %s | FileCheck %s -check-prefixes=CHECK-USER
3 ; RUN: llc -O0 < %s | FileCheck %s -check-prefixes=CHECK0-USER
4 ; RUN: llc -code-model=kernel < %s | FileCheck %s -check-prefixes=CHECK-KERNEL
5 ; RUN: llc -O0 -code-model=kernel < %s | FileCheck %s -check-prefixes=CHECK0-KERNEL
7 target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
8 target triple = "x86_64-unknown-linux-gnu"
21 ; CHECK-USER-LABEL: test_uintr_isr_cc_empty:
22 ; CHECK-USER: # %bb.0: # %entry
23 ; CHECK-USER-NEXT: pushq %rax
[all …]
/llvm-project/libcxx/test/std/numerics/numbers/
H A Duser_type.compile.pass.cpp1 //===----------------------------------------------------------------------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
13 struct user { struct
18 user std::numbers::e_v<user>{}; argument
21 user std::numbers::log2e_v<user>{};
24 user std::numbers::log10e_v<user>{};
27 user std::numbers::pi_v<user>{};
30 user std::numbers::inv_pi_v<user>{};
33 user std::numbers::inv_sqrtpi_v<user>{};
[all …]
/llvm-project/llvm/test/CodeGen/AArch64/GlobalISel/
H A Dlegalizer-info-validation.mir1 # NOTE: Assertions have been autogenerated by utils/update_mir_test_checks.py UTC_ARGS: --version 5
2 # RUN: llc -mtriple=aarch64-- -run-pass=legalizer %s \
3 # RUN: -mcpu=cortex-a75 -
[all...]
/llvm-project/mlir/unittests/IR/
H A DOperationSupportTest.cpp1 //===- OperationSupportTest.cpp - Operation support unit tests ------------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
25 context->allowUnregisteredDialects(); in createOp()
38 Value operand = useOp->getResult(0); in TEST()
40 // Create a non-resizable operation with one operand. in TEST()
41 Operation *user = createOp(&context, operand); in TEST() local
44 user->setOperands(operand); in TEST()
45 EXPECT_EQ(user->getNumOperands(), 1u); in TEST()
48 user->setOperands(std::nullopt); in TEST()
[all …]
/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/
H A DIRTranslator.h1 //===- llvm/CodeGen/GlobalISel/IRTranslator.h - IRTranslator ----*- C++ -*-===//
5 // SPDX-Licens
55 class User; global() variable
[all...]
/llvm-project/clang/test/Modules/
H A Dfmodules-validate-once-per-build-session.c5 // RUN: rm -rf %t
6 // RUN: mkdir -p %t/Inputs
7 // RUN: mkdir -p %t/modules-to-compare
10 // Create a module. We will use -I or -isystem to determine whether to treat
20-cc1 -fmodules -fimplicit-module-maps -fdisable-module-hash -fmodules-cache-path=%t/modules-cache
21-cc1 -fmodules -fimplicit-module-maps -fdisable-module-hash -fmodules-cache-path=%t/modules-cache-…
22 // RUN: ls -R %t/modules-cache | grep Foo.pcm.timestamp
23 // RUN: ls -R %t/modules-cache | grep Bar.pcm.timestamp
24 // RUN: ls -R %t/modules-cache-user | grep Foo.pcm.timestamp
25 // RUN: ls -R %t/modules-cache-user | grep Bar.pcm.timestamp
[all …]
/llvm-project/mlir/lib/Dialect/Async/Transforms/
H A DAsyncRuntimeRefCountingOpt.cpp1 //===- AsyncRuntimeRefCountingOpt.cpp - Async Ref Counting --------------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
11 //===----------------------------------------------------------------------===//
25 #define DEBUG_TYPE "async-ref-counting"
73 auto updateBlockUsersInfo = [&](Operation *user) { in optimizeReferenceCounting() argument
74 BlockUsersInfo &info = blockUsers[user->getBlock()]; in optimizeReferenceCounting()
75 info.users.push_back(user); in optimizeReferenceCounting()
77 if (auto addRef = dyn_cast<RuntimeAddRefOp>(user)) in optimizeReferenceCounting()
79 if (auto dropRef = dyn_cast<RuntimeDropRefOp>(user)) in optimizeReferenceCounting()
[all …]
/llvm-project/llvm/include/llvm/IR/
H A DUser.h1 //===- llvm/User.h - User class definition ------
73 User(Type *ty, unsigned vty, Use *, unsigned NumOps) User() function
[all...]
H A DUse.h1 //===- llvm/Use.h - Definition of the Use class -----------------*- C++ -*-===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
11 /// instruction or some other User instance which refers to a Value. The Use
14 /// Pointer tagging is used to efficiently find the User corresponding to a Use
15 /// without having to store a User pointer in every Use. A User is preceded in
18 /// able to find that User given a pointer to any Use. For details, see:
22 //===----------------------------------------------------------------------===//
27 #include "llvm-c/Types.h"
34 class User; variable
[all …]
/llvm-project/llvm/lib/IR/
H A DUser.cpp1 //===-- User.cpp - Implement the User class -----
[all...]
/llvm-project/polly/lib/External/isl/
H A Disl_id.c2 * Copyright 2008-2009 Katholieke Universiteit Leuven
7 * Computerwetenschappen, Celestijnenlaan 200A, B-3001 Leuven, Belgium
22 * The user should never get a hold on this isl_id.
25 .ref = -1,
28 .user = NULL
33 return id ? id->ctx : NULL; in isl_id_get_ctx()
38 return id ? id->user : NULL; in isl_id_get_user()
43 return id ? id->name : NULL; in isl_id_get_name()
46 static __isl_give isl_id *id_alloc(isl_ctx *ctx, const char *name, void *user) in id_alloc() argument
57 id->ctx = ctx; in id_alloc()
[all …]
H A Disl_union_multi.c4 * Copyright 2015 INRIA Paris-Rocquencourt
8 * Written by Sven Verdoolaege, INRIA Saclay - Ile-de-France,
12 * and INRIA Paris-Rocquencourt, Domaine de Voluceau, Rocquenqourt, B.P. 105,
49 isl_stat (*fn)(__isl_keep S(UNION,group) *group, void *user); in S()
50 void *user; in S() local
53 /* Call data->fn on the group stored at *entry.
55 static isl_stat FN(UNION,call_on_group)(void **entry, void *user) in FN()
60 data = (S(UNION,foreach_group_data) *) user; in FN()
61 return data->fn(group, data->user); in FN()
67 isl_stat (*fn)(__isl_keep S(UNION,group) *group, void *user), in FN()
[all …]
H A Disl_union_map.c2 * Copyright 2010-2011 INRIA Saclay
3 * Copyright 2013-2014 Ecole Normale Superieure
5 * Copyright 2016-2017 Sven Verdoolaege
9 * Written by Sven Verdoolaege, INRIA Saclay - Ile-de-France,
12 * and Inria Paris - Rocquencourt, Domaine de Voluceau - Rocquencourt,
13 * B.P. 105 - 78153 Le Chesnay, France
55 return isl_space_dim(umap->dim, type); in isl_union_map_dim()
79 return isl_space_get_dim_id(umap->dim, type, pos); in isl_union_map_get_dim_id()
91 if (uset->table.n != 1) in isl_union_set_is_params()
118 umap = isl_calloc_type(space->ctx, isl_union_map); in isl_union_map_alloc()
[all …]
H A Disl_bound.c6 * Written by Sven Verdoolaege, INRIA Saclay - Ile-de-France,
46 bound->pwf = isl_pw_qpolynomial_fold_fold(bound->pwf, pwf); in isl_bound_add()
47 return isl_stat_non_null(bound->pwf); in isl_bound_add()
56 bound->pwf_tight = isl_pw_qpolynomial_fold_fold(bound->pwf_tight, pwf); in isl_bound_add_tight()
57 return isl_stat_non_null(bound->pwf); in isl_bound_add_tight()
70 pwf = isl_qpolynomial_cst_bound(bset, poly, bound->type, NULL); in add_constant_poly()
76 * store the result in bound->pwf and bound->pwf_tight.
79 * of the user.
86 __isl_take isl_qpolynomial *poly, void *user) in compressed_guarded_poly_bound() argument
88 struct isl_bound *bound = (struct isl_bound *)user; in compressed_guarded_poly_bound()
[all …]
/llvm-project/lldb/unittests/TestingSupport/
H A DMockTildeExpressionResolver.cpp1 //===-- MockTildeExpressionResolver.cpp -----------------------------------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
22 void MockTildeExpressionResolver::AddKnownUser(StringRef User, in AddKnownUser() argument
24 assert(!UserDirectories.contains(User)); in AddKnownUser()
25 UserDirectories.insert(std::make_pair(User, HomeDir)); in AddKnownUser()
33 void MockTildeExpressionResolver::SetCurrentUser(StringRef User) { in SetCurrentUser() argument
34 assert(UserDirectories.contains(User)); in SetCurrentUser()
35 CurrentUser = User; in SetCurrentUser()
52 for (const auto &User : UserDirectories) { in ResolveExact() local
[all …]
/llvm-project/flang/test/Semantics/OpenMP/
H A Dworkshare02.f901 ! RUN: %python %S/../test_errors.py %s %flang -fopenmp
4 ! The !omp workshare construct must not contain any user defined
28 !ERROR: User defined non-ELEMENTAL function 'my_func' is not allowed in a WORKSHARE construct
33 !ERROR: User defined non-ELEMENTAL function 'my_func' is not allowed in a WORKSHARE construct
35 !ERROR: User defined non-ELEMENTAL function 'my_func' is not allowed in a WORKSHARE construct
38 !ERROR: User defined non-ELEMENTA
[all...]
/llvm-project/mlir/utils/jupyter/mlir_opt_kernel/
H A Dinstall.py3 # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
11 def install_my_kernel_spec(user=True, prefix=None): argument
12 """Install the kernel spec for user in given prefix."""
13 print("Installing mlir-opt IPython kernel spec")
16 os.path.join(pkgroot, "assets"), "mlir", user=user, prefix=prefix
21 """Returns whether the current user is root."""
36 "--user", help="Install in user home directory", action="store_true"
39 "--prefix", help="Install directory prefix", default=None
44 user = args.user or not _is_root()
47 install_my_kernel_spec(user=user, prefix=prefix)
/llvm-project/llvm/lib/Analysis/
H A DIVUsers.cpp1 //===- IVUsers.cpp - Induction Variable Users --------
97 IVUseShouldUsePostIncValue(Instruction * User,Value * Operand,const Loop * L,DominatorTree * DT) IVUseShouldUsePostIncValue() argument
175 Instruction *User = cast<Instruction>(U.getUser()); AddUsersIfInteresting() local
246 AddUser(Instruction * User,Value * Operand) AddUser() argument
[all...]
/llvm-project/llvm/utils/TableGen/jupyter/tablegen_kernel/
H A Dinstall.py3 # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
13 def install_my_kernel_spec(user=True, prefix=None): argument
14 """Install the kernel spec for user in given prefix."""
15 print("Installing llvm-tblgen IPython kernel spec")
19 sys.executable, "-m", "tablegen_kernel", "-f", "{connection_file}"
26 "mimetype": "text/x-tablegen",
37 tmpdir, "tablegen", user=user, prefix=prefix
42 """Returns whether the current user is root."""
57 "--user", help="Install in user home directory", action="store_true"
60 "--prefix", help="Install directory prefix", default=None
[all …]
/llvm-project/clang/test/Parser/
H A Dcxx11-user-defined-literals.cpp1 // RUN: %clang_cc1 -std=c++11 -verify %s -fms-extensions -triple x86_64-apple-darwin9.0.0
3 // A ud-suffix cannot be used on string literals in a whole bunch of contexts:
5 #include "foo"_bar // expected-error {{expected "FILENAME" or <FILENAME>}}
6 #line 1 "foo"_bar // expected-erro
[all...]
/llvm-project/clang-tools-extra/pseudo/test/cxx/
H A Dliterals.cpp
/llvm-project/clang/test/Driver/
H A Dconfig-file3.c2 // REQUIRES: x86-registered-target
5 // RUN: rm -rf %t && mkdir %t
7 //--- If config file is specified by relative path (workdir/cfg-s2), it is searched for by that path.
9 // RUN: mkdir -p %t/workdir/subdir
10 // RUN: echo "@subdir/cfg-s2" > %t/workdir/cfg-
[all...]
/llvm-project/clang/test/OpenMP/
H A Ddeclare_mapper_messages.cpp1 // RUN: %clang_cc1 -verify=omp50,expected,cxx17 -fopenmp -fopenmp-version=50 -ferror-limit 100 %std…
2 // RUN: %clang_cc1 -verify=omp50,expected,precxx17 -fopenmp-simd -fopenmp-version=50 -ferror-limit …
4 // RUN: %clang_cc1 -verify=omp51,expected,cxx17 -fopenmp -ferror-limit 100 %std_cxx17- %s
5 // RUN: %clang_cc1 -verify=omp51,expected,precxx17 -fopenmp-simd -ferror-limit 100 %std_cxx98-14 %s
7 int temp; // expected-note {{'temp' declared here}}
11 …int p; // expected-note {{declared …
18 #pragma omp declare mapper // expected-error {{expecte…
19 #pragma omp declare mapper { // expected-error {{expecte…
20 …r( // expected-error {{expected a type}} expected-erro…
21 …r(# // expected-error {{expected a type}} expected-erro…
[all …]
/llvm-project/mlir/lib/Dialect/SCF/Transforms/
H A DLoopRangeFolding.cpp1 //===- LoopRangeFolding.cpp - Code to perform loop range folding--------
52 Operation *user = *indVar.getUsers().begin(); runOnOperation() local
[all...]
/llvm-project/clang/docs/analyzer/
H A Duser-docs.rst1 User Docs
9 user-docs/Installation
10 user-docs/CommandLineUsage
11 user-docs/UsingWithXCode
12 user-docs/FilingBugs
13 user
[all...]

12345678910>>...45