| /llvm-project-15.0.7/libclc/ |
| H A D | .gitignore | 13 utils/prepare-builtins 14 utils/prepare-builtins.o 15 utils/prepare-builtins.o.d
|
| /llvm-project-15.0.7/clang-tools-extra/clangd/refactor/tweaks/ |
| H A D | DumpAST.cpp | 36 bool prepare(const Selection &Inputs) override { in prepare() function in clang::clangd::__anonb3856a0c0111::DumpAST 89 bool prepare(const Selection &Inputs) override { return true; } in prepare() function in clang::clangd::__anonb3856a0c0111::ShowSelectionTree 108 bool prepare(const Selection &Inputs) override { return true; } in prepare() function in clang::clangd::__anonb3856a0c0111::DumpSymbol 138 bool prepare(const Selection &Inputs) override { in prepare() function in clang::clangd::__anonb3856a0c0111::DumpRecordLayout
|
| H A D | ObjCLocalizeStringLiteral.cpp | 38 bool prepare(const Selection &Inputs) override; 48 bool ObjCLocalizeStringLiteral::prepare(const Selection &Inputs) { in REGISTER_TWEAK()
|
| H A D | RawStringLiteral.cpp | 33 bool prepare(const Selection &Inputs) override; 74 bool RawStringLiteral::prepare(const Selection &Inputs) { in prepare() function in clang::clangd::__anon0b89981c0111::RawStringLiteral
|
| H A D | SwapIfBranches.cpp | 36 bool prepare(const Selection &Inputs) override; 50 bool SwapIfBranches::prepare(const Selection &Inputs) { in REGISTER_TWEAK()
|
| H A D | ExpandAutoType.cpp | 40 bool prepare(const Selection &Inputs) override; 90 bool ExpandAutoType::prepare(const Selection &Inputs) { in prepare() function in clang::clangd::__anoned3f09490111::ExpandAutoType
|
| H A D | ExpandMacro.cpp | 38 bool prepare(const Selection &Inputs) override; 90 bool ExpandMacro::prepare(const Selection &Inputs) { in prepare() function in clang::clangd::__anon6e4f46200111::ExpandMacro
|
| H A D | RemoveUsingNamespace.cpp | 36 bool prepare(const Selection &Inputs) override; 104 bool RemoveUsingNamespace::prepare(const Selection &Inputs) { in prepare() function in clang::clangd::__anon6819becf0111::RemoveUsingNamespace
|
| H A D | PopulateSwitch.cpp | 52 bool prepare(const Selection &Sel) override; 85 bool PopulateSwitch::prepare(const Selection &Sel) { in REGISTER_TWEAK()
|
| /llvm-project-15.0.7/llvm/utils/lit/ |
| H A D | CMakeLists.txt | 15 add_custom_target(prepare-check-lit 25 DEPENDS "FileCheck" "not" "prepare-check-lit" 30 set_target_properties(prepare-check-lit PROPERTIES FOLDER "Tests")
|
| /llvm-project-15.0.7/llvm/test/Transforms/Coroutines/ |
| H A D | coro-retcon-opaque-ptr.ll | 43 %prepare = call ptr @llvm.coro.prepare.retcon(ptr @f) 44 %cont0 = call ptr %prepare(ptr %0, i32 4) 81 declare i8* @llvm.coro.prepare.retcon(i8*)
|
| H A D | coro-retcon-value.ll | 46 %prepare = call i8* @llvm.coro.prepare.retcon(i8* bitcast ({i8*, i32} (i8*, i32)* @f to i8*)) 47 %f = bitcast i8* %prepare to {i8*, i32} (i8*, i32)* 74 declare i8* @llvm.coro.prepare.retcon(i8*)
|
| H A D | coro-retcon-once-value.ll | 65 %prepare = call i8* @llvm.coro.prepare.retcon(i8* bitcast ({i8*, i32} (i8*, i32*)* @f to i8*)) 66 %f = bitcast i8* %prepare to {i8*, i32} (i8*, i32*)* 83 declare i8* @llvm.coro.prepare.retcon(i8*)
|
| H A D | coro-retcon.ll | 46 %prepare = call i8* @llvm.coro.prepare.retcon(i8* bitcast (i8* (i8*, i32)* @f to i8*)) 47 %f = bitcast i8* %prepare to i8* (i8*, i32)* 95 declare i8* @llvm.coro.prepare.retcon(i8*)
|
| H A D | coro-retcon-resume-values.ll | 77 %prepare = call i8* @llvm.coro.prepare.retcon(i8* bitcast (i8* (i8*, i32)* @f to i8*)) 78 %f = bitcast i8* %prepare to i8* (i8*, i32)* 96 declare i8* @llvm.coro.prepare.retcon(i8*)
|
| /llvm-project-15.0.7/llvm/include/llvm/ExecutionEngine/Orc/ |
| H A D | MemoryMapper.h | 52 virtual char *prepare(ExecutorAddr Addr, size_t ContentSize) = 0; 93 char *prepare(ExecutorAddr Addr, size_t ContentSize) override; 142 char *prepare(ExecutorAddr Addr, size_t ContentSize) override;
|
| /llvm-project-15.0.7/llvm/test/CodeGen/X86/ |
| H A D | basic-block-sections-mir-print.ll | 1 ; Stop after bbsections-prepare and check MIR output for section type. 5 …linux -function-sections -basic-block-sections=%t -stop-after=bbsections-prepare | FileCheck %s -c…
|
| H A D | basic-block-sections-mir-parse.mir | 1 # Start after bbsections0-prepare and check if the right code is generated. 2 # RUN: llc -mtriple x86_64-unknown-linux-gnu -start-after=bbsections-prepare %s -o - | FileCheck %… 13 # llc < foo.ll -stop-after=bbsections-prepare -basic-block-sections=all
|
| /llvm-project-15.0.7/llvm/unittests/ExecutionEngine/Orc/ |
| H A D | MemoryMapperTest.cpp | 84 char *WA1 = Mapper->prepare(Mem1->Start, HW.size() + 1); in TEST() 109 char *WA2 = Mapper->prepare(Mem1->Start + PageSize, HW.size() + 1); in TEST() 162 char *WA = Mapper->prepare(Mem2->Start, HW.size() + 1); in TEST()
|
| /llvm-project-15.0.7/clang-tools-extra/clangd/refactor/ |
| H A D | Tweak.cpp | 80 if (!Filter(*T) || !T->prepare(S)) in prepareTweaks() 97 if (!T->prepare(S)) in prepareTweak()
|
| /llvm-project-15.0.7/llvm/test/Transforms/LoopRotate/ |
| H A D | call-prepare-for-lto.ll | 2 ; RUN: opt -S -loop-rotate -rotation-prepare-for-lto < %s | FileCheck --check-prefix=PREPARE %s 4 ; RUN: opt -S -passes='require<targetir>,require<assumptions>,loop(loop-rotate)' -rotation-prepare-… 6 ; Test case to make sure loop-rotate avoids rotating during the prepare-for-lto
|
| /llvm-project-15.0.7/polly/test/ScopInfo/ |
| H A D | licm_load.ll | 1 ; RUN: opt %loadPolly -basic-aa -loop-rotate -indvars -polly-prepare \ 4 ; RUN: opt %loadPolly -basic-aa -loop-rotate -indvars -licm -polly-prepare \
|
| H A D | licm_reduction_nested.ll | 1 ; RUN: opt %loadPolly -basic-aa -loop-rotate -indvars -polly-prepare -polly-print-scops -disa… 2 ; RUN: opt %loadPolly -basic-aa -loop-rotate -indvars -licm -polly-prepare -polly-scops -disable-ou…
|
| /llvm-project-15.0.7/lld/MachO/ |
| H A D | UnwindInfoSection.h | 27 virtual void prepare() = 0;
|
| /llvm-project-15.0.7/llvm/test/CodeGen/DirectX/ |
| H A D | typed_ptr.ll | 1 ; RUN: opt -S -dxil-prepare < %s | FileCheck %s
|