Home
last modified time | relevance | path

Searched refs:folder (Results 1 – 25 of 121) sorted by relevance

12345

/llvm-project-15.0.7/clang/test/Modules/
H A Dmodule-imported-by-pch-with-modulemap.m2 // RUN: mkdir -p %t.dst/folder-with-modulemap %t.dst/pch-folder
3 // RUN: echo '#import "folder-with-modulemap/included.h"' > %t.dst/header.h
4 // RUN: echo 'extern int MyModuleVersion;' > %t.dst/folder-with-modulemap/MyModule.h
5 // RUN: echo '@import MyModule;' > %t.dst/folder-with-modulemap/included.h
6 // RUN: echo 'module MyModule { header "MyModule.h" }' > %t.dst/folder-with-modulemap/MyModule.modu…
8 // RUN: %clang_cc1 -emit-pch -o %t.dst/pch-folder/header.pch -fmodule-map-file=%t.dst/folder-with-m…
9 …=%t.dst/folder-with-modulemap/MyModule.modulemap -fmodules-cache-path=%t.cache -fmodules -fimplici…
H A Dmodule-imported-by-pch-path.m2 // RUN: mkdir -p %t.dst/folder-with-modulemap %t.dst/pch-folder
3 // RUN: echo '#import "folder-with-modulemap/included.h"' > %t.dst/header.h
4 // RUN: echo 'extern int MyModuleVersion;' > %t.dst/folder-with-modulemap/MyModule.h
5 // RUN: echo '@import MyModule;' > %t.dst/folder-with-modulemap/included.h
6 // RUN: echo 'module MyModule { header "MyModule.h" }' > %t.dst/folder-with-modulemap/module.module…
8 // RUN: %clang -o %t.dst/pch-folder/header.pch -x objective-c-header -fmodules-cache-path=%t.cache …
9 …-only -fmodules-cache-path=%t.cache -fmodules %s -include-pch %t.dst/pch-folder/header.pch 2>&1 | …
15 …not defined in any loaded module map file; maybe you need to load '[[PATH:.*folder-with-modulemap]]
/llvm-project-15.0.7/mlir/lib/Transforms/
H A DSCCP.cpp39 OperationFolder &folder, Value value) { in replaceWithConstant() argument
49 Value constant = folder.getOrCreateConstant(builder, dialect, in replaceWithConstant()
72 OperationFolder folder(context); in rewrite() local
86 succeeded(replaceWithConstant(solver, builder, folder, res)); in rewrite()
103 (void)replaceWithConstant(solver, builder, folder, arg); in rewrite()
/llvm-project-15.0.7/mlir/test/lib/Transforms/
H A DTestIntRangeInference.cpp25 OperationFolder &folder, Value value) { in replaceWithConstant() argument
41 Value constant = folder.getOrCreateConstant(b, valueDialect, constAttr, in replaceWithConstant()
60 OperationFolder folder(context); in rewrite() local
73 succeeded(replaceWithConstant(solver, builder, folder, res)); in rewrite()
90 (void)replaceWithConstant(solver, builder, folder, arg); in rewrite()
/llvm-project-15.0.7/mlir/lib/Transforms/Utils/
H A DGreedyPatternRewriteDriver.cpp93 OperationFolder folder; member in __anonf6b3e8e30111::GreedyPatternRewriteDriver
109 : PatternRewriter(ctx), matcher(patterns), folder(ctx), config(config) { in GreedyPatternRewriteDriver()
140 if (!folder.insertKnownConstant(op, constValue)) in simplify()
237 if ((succeeded(folder.tryToFold(op, collectOps, preReplaceAction, in simplify()
347 folder.notifyRemoval(operation); in notifyOperationRemoved()
423 : PatternRewriter(ctx), matcher(patterns), folder(ctx) { in OpPatternRewriteDriver()
447 OperationFolder folder; member in __anonf6b3e8e30e11::OpPatternRewriteDriver
481 if (succeeded(folder.tryToFold(op, /*processGeneratedConstants=*/nullptr, in simplifyLocally()
630 if (succeeded(folder.tryToFold(op, processGeneratedConstants, in simplifyLocally()
/llvm-project-15.0.7/lldb/packages/Python/lldbsuite/test/
H A Dtest_result.py121 folder = os.path.dirname(start_path)
124 if test_root != os.path.commonprefix([folder, test_root]):
128 while not os.path.samefile(folder, test_root):
129 categories_file_name = os.path.join(folder, "categories")
135 folder = os.path.dirname(folder)
/llvm-project-15.0.7/llvm/utils/vscode/llvm/
H A Dvsc-extension-quickstart.md3 ## What's in the folder
5 * This folder contains all of the files necessary for your extension.
28 … with Visual Studio Code copy it into the `<user home>/.vscode/extensions` folder and restart Code.
H A DREADME.md22 cd <extensions-installation-folder>
28 `<extensions-installation-folder>` is OS dependent.
/llvm-project-15.0.7/llvm/test/CodeGen/X86/
H A Dbranchfolding-ehpad.mir1 # RUN: llc -mtriple=x86_64-windows-msvc -verify-machineinstrs -run-pass branch-folder -o - %s | Fil…
3 # Check that branch-folder does not create a fallthrough to a landing pad.
H A Dpatchpoint-verifiable.mir1 # RUN: llc -mtriple=x86_64-apple-darwin -stop-after branch-folder -start-after branch-folder -o - %…
H A Dundef-eflags.mir1 # RUN: llc -o - %s -mtriple=x86_64-- -verify-machineinstrs -run-pass branch-folder | FileCheck %s
H A Dbranchfolding-undef.mir1 # RUN: llc -o - %s -mtriple=i686-- -run-pass branch-folder | FileCheck %s
/llvm-project-15.0.7/llvm/cmake/platforms/
H A DWinMsvc.cmake10 # -DMSVC_VER=vc tools version folder name
11 # -DWINSDK_VER=windows sdk version folder name
17 # *Absolute path* to a folder containing the toolchain which will be used to
18 # build. At a minimum, this folder should have a bin directory with a
25 # LLVM_WINSYSROOT and MSVC_VER work together to define a folder layout that
26 # containing MSVC headers and system libraries. The layout of the folder
48 # LLVM_WINSYSROOT and WINSDK_VER work together to define a folder layout that
196 "LLVM_NATIVE_TOOLCHAIN folder '${LLVM_NATIVE_TOOLCHAIN}' does not "
222 "CMake variable LLVM_WINSYSROOT and MSVC_VER must point to a folder "
/llvm-project-15.0.7/llvm/test/CodeGen/MIR/X86/
H A Dbranch-folder-with-debug.mir1 # RUN: llc -o - %s -mtriple=x86_64-- -run-pass=branch-folder | FileCheck %s
2 # Branch folder should ignore the DBG_VALUE between block bb.2 and bb.3,
10 # llc -stop-before=branch-folder test.ll
H A Descape-function-name.ll1 ; RUN: llc -mtriple=x86_64-unknown-unknown -stop-after branch-folder -o - %s 2>&1 | FileCheck %s
/llvm-project-15.0.7/llvm/test/CodeGen/AMDGPU/
H A Dinsert-branch-w32.mir1 # RUN: llc -march=amdgcn -mcpu=gfx1010 -verify-machineinstrs -run-pass branch-folder -o - %s | File…
2 # RUN: llc -march=amdgcn -mcpu=gfx1100 -verify-machineinstrs -run-pass branch-folder -o - %s | File…
/llvm-project-15.0.7/polly/lib/
H A DCMakeLists.txt113 # will be a source and include folder. In the source folder will be all the
114 # source files in a flat list, and in the include folder will be all the
115 # headers in a flat list. Sets the CMake source_group for each folder such
/llvm-project-15.0.7/openmp/libomptarget/
H A DCMakeLists.txt86 "Path to folder containing omp.h")
88 "Path to folder containing libomp.so, and libLLVMSupport.so with profiling enabled")
90 "Path to folder containing llvm library libomptarget.so")
/llvm-project-15.0.7/mlir/utils/vscode/src/
H A DmlirContext.ts82 for (const folder of event.removed) { constant
83 const client = this.workspaceFolders.get(folder.uri.toString());
86 this.workspaceFolders.delete(folder.uri.toString());
/llvm-project-15.0.7/llvm/test/CodeGen/PowerPC/
H A Dlivephysregs.mir1 # RUN: llc -o - %s -mtriple=powerpc64le--linux-gnu -run-pass=branch-folder | FileCheck %s
2 # The branch-folder should merge bb.1 and bb.5 below and therefore recalculate
/llvm-project-15.0.7/llvm/test/CodeGen/Hexagon/
H A Dbranchfolder-insert-impdef.mir1 # RUN: llc -march=hexagon -run-pass branch-folder %s -o - -verify-machineinstrs | FileCheck %s
8 # live-out from bb.0. To remedy that, the branch folder should add an
/llvm-project-15.0.7/libc/utils/buildbot/
H A DREADME.txt1 This folder contains resources needed to create a docker container for
/llvm-project-15.0.7/llvm/test/DebugInfo/X86/
H A Dconvert-linked.ll23 ;; So, insert something before DW_OP_LLVM_convert that the expression folder
33 ;; So, insert something before DW_OP_LLVM_convert that the expression folder
/llvm-project-15.0.7/llvm/test/tools/llvm-rc/
H A Dinclude-paths.test1 ; Should find the bitmap if it is in the same folder as the rc file.
11 ; Should find the bitmap if the folder is explicitly specified.
/llvm-project-15.0.7/llvm/test/CodeGen/AArch64/
H A Dbranch-folder-oneinst.mir1 # RUN: llc -o - %s -mtriple=aarch64 -run-pass branch-folder -verify-machineinstrs | FileCheck %s

12345