Home
last modified time | relevance | path

Searched refs:doit (Results 1 – 25 of 42) sorted by relevance

12

/llvm-project-15.0.7/llvm/test/Bitcode/
H A Dblockaddress.ll11 store i8* blockaddress(@doit, %here), i8** %ptr1, align 8
12 ; CHECK: blockaddress(@doit, %here)
13 br label %doit.exit
15 doit.exit:
19 define void @doit(i8** nocapture %pptr) {
20 ; CHECK: define void @doit
25 store i8* blockaddress(@doit, %here), i8** %pptr, align 8
26 ; CHECK: blockaddress(@doit, %here)
40 store i8* blockaddress(@doit, %here), i8** %pptr, align 8
41 ; CHECK: blockaddress(@doit, %here)
/llvm-project-15.0.7/llvm/include/llvm/Support/
H A DCasting.h74 static inline bool doit(const From &Val) {
75 return isa_impl<To, From>::doit(Val);
80 static inline bool doit(const From &Val) {
81 return isa_impl<To, From>::doit(Val);
94 static inline bool doit(const From *Val) {
96 return isa_impl<To, From>::doit(*Val);
103 return isa_impl<To, From>::doit(*Val);
110 return isa_impl<To, From>::doit(*Val);
118 return isa_impl<To, From>::doit(*Val);
126 static bool doit(const From &Val) {
[all …]
/llvm-project-15.0.7/llvm/test/Verifier/
H A Dinalloca2.ll5 declare void @doit(i64* inalloca(i64) %a)
11 call void @doit(i64* inalloca(i64) %b)
18 call void @doit(i64* inalloca(i64) %a)
19 call void @doit(i64* inalloca(i64) %a)
37 call void @doit(i64* inalloca(i64) %args)
H A Dinalloca3.ll4 declare void @doit(i64* inalloca(i64) %a)
10 call void @doit(i64* inalloca(i64) %b)
/llvm-project-15.0.7/llvm/test/Instrumentation/AddressSanitizer/
H A Dhoist-argument-init-insts.ll5 ;; void swap(S *a, S *b, bool doit) {
6 ;; if (!doit)
35 %doit.addr = alloca i8, align 1
39 %frombool = zext i1 %doit to i8
41 %0 = load i8, i8* %doit.addr, align 1
81 %doit.addr = alloca i8, align 1
87 %0 = load i8, i8* %doit.addr, align 1
89 %frombool = zext i1 %doit to i8
131 %doit.addr = alloca i8, align 1
136 %frombool = zext i1 %doit to i8
[all …]
/llvm-project-15.0.7/clang/test/PCH/
H A Dimplicitly-deleted.cpp15 template<typename T> void doit(decltype(T(make<const T&>()))*) { T(make<const T&>()); } in doit() function
16 template<typename T> void doit(...) { T(make<T&&>()); } in doit() function
17 template<typename T> void later() { doit<T>(0); } in later()
/llvm-project-15.0.7/llvm/test/CodeGen/X86/
H A Dwarn-stack.ll10 call void @doit(ptr %buffer) nounwind
18 call void @doit(ptr %buffer) nounwind
31 call void @doit(ptr %buffer) nounwind
34 declare void @doit(ptr)
H A Dinline-asm-stack-realign3.ll9 br i1 %cond, label %doit, label %skip
11 doit:
/llvm-project-15.0.7/llvm/include/llvm/IR/
H A DValue.h955 static inline bool doit(const Value &Val) {
962 static inline bool doit(const Value &Val) {
969 static inline bool doit(const Value &Val) {
982 static inline bool doit(const Value &Val) {
988 static inline bool doit(const Value &Val) {
994 static inline bool doit(const Value &Val) {
1000 static inline bool doit(const Value &Val) {
1006 static inline bool doit(const Value &Val) {
1012 static inline bool doit(const Value &Val) {
1018 static inline bool doit(const Value &Val) {
[all …]
/llvm-project-15.0.7/llvm/test/CodeGen/ARM/
H A Dwarn-stack.ll11 call void @doit(i8* %arraydecay) nounwind
20 call void @doit(i8* %arraydecay) nounwind
24 declare void @doit(i8*)
/llvm-project-15.0.7/clang/test/SemaCXX/
H A Doperator-arrow-temporary.cpp5 void doit();
18 void f() { Accessor acc; acc->doit(); } // expected-note {{requested here}} in f()
H A Dwarn-unused-result.cpp120 StatusOr<int> doit();
124 doit(); // expected-warning {{ignoring return value}} in test()
/llvm-project-15.0.7/llvm/lib/DebugInfo/CodeView/
H A DTypeStreamMerger.cpp102 Error doit(const CVTypeArray &Types);
246 return doit(Types); in mergeTypeRecords()
256 return doit(Ids); in mergeIdRecords()
266 auto Err = doit(IdsAndTypes); in mergeTypesAndIds()
279 auto Err = doit(Types); in mergeTypeRecords()
293 return doit(Ids); in mergeIdRecords()
305 auto Err = doit(IdsAndTypes); in mergeTypesAndIds()
310 Error TypeStreamMerger::doit(const CVTypeArray &Types) { in doit() function in TypeStreamMerger
/llvm-project-15.0.7/llvm/test/Transforms/Inline/
H A Dblockaddress.ll5 ; Make sure doit is not inlined since the blockaddress is taken
7 ; CHECK: store i8* blockaddress(@doit, %here), i8** %pptr, align 8
12 define void @doit(i8** nocapture %pptr, i32 %cond) nounwind uwtable {
18 store i8* blockaddress(@doit, %here), i8** %pptr, align 8
27 call void @doit(i8** @ptr1, i32 %cond)
/llvm-project-15.0.7/mlir/include/mlir/IR/
H A DDialect.h294 static inline bool doit(const ::mlir::Dialect &dialect) {
302 static inline bool doit(const ::mlir::Dialect &dialect) {
333 static auto &doit(::mlir::Dialect &dialect) { return doitImpl<T>(dialect); }
337 static auto doit(::mlir::Dialect *dialect) {
338 return &cast_convert_val<T, ::mlir::Dialect, ::mlir::Dialect>::doit(
/llvm-project-15.0.7/llvm/test/Transforms/InstCombine/
H A Dtoken.ll36 %cs = catchswitch within none [label %doit] unwind to caller
38 doit:
72 %cs = catchswitch within none [label %doit] unwind to caller
74 doit:
/llvm-project-15.0.7/llvm/test/Transforms/GlobalOpt/
H A Dstorepointer-no-null-opt.ll18 define void @doit() #0 {
19 ; CHECK-LABEL: doit(
H A Dstorepointer-compare-no-null-opt.ll18 define void @doit() #0 {
19 ; CHECK-LABEL: doit(
/llvm-project-15.0.7/clang/include/clang/AST/
H A DDeclBase.h2593 static const ToTy *doit(const DeclContext *Val) {
2597 static ToTy *doit(DeclContext *Val) {
2605 static const ToTy *doit(const DeclContext *Val) {
2609 static ToTy *doit(DeclContext *Val) {
2621 static bool doit(const ::clang::DeclContext &Val) {
2630 static const ToTy &doit(const ::clang::DeclContext &Val) {
2637 static ToTy &doit(::clang::DeclContext &Val) {
2645 static const ToTy *doit(const ::clang::DeclContext *Val) {
2652 static ToTy *doit(::clang::DeclContext *Val) {
2660 static ::clang::DeclContext &doit(const FromTy &Val) {
[all …]
/llvm-project-15.0.7/llvm/test/CodeGen/AArch64/
H A Darm64-big-stack.ll17 call void @doit(i8* %arraydecay) nounwind
21 declare void @doit(i8*)
/llvm-project-15.0.7/llvm/test/Transforms/SimpleLoopUnswitch/
H A Dcleanuppad.ll4 define void @f(i32 %doit, i1 %x, i1 %y) personality i32 (...)* @__CxxFrameHandler3 {
6 %tobool = icmp eq i32 %doit, 0
H A D2011-09-26-EHCrash.ll9 define void @_ZN11MyContainer1fEi(%class.MyContainer.1.3.19.29* %this, i32 %doit) uwtable ssp align…
20 %tobool = icmp ne i32 %doit, 0
/llvm-project-15.0.7/llvm/test/CodeGen/BPF/
H A Dwarn-stack.ll9 call void @doit(i8* nonnull %2) #4, !dbg !18
20 declare void @doit(i8*) local_unnamed_addr #3
32 call void @doit(i8* nonnull %2) #4, !dbg !28
/llvm-project-15.0.7/clang/test/CodeGenCXX/
H A Dmicrosoft-abi-vmemptr-fastcall.cpp6 void (__fastcall A::*doit())(int, int) { in doit() function
H A Ddebug-info-codeview-heapallocsite.cpp11 extern "C" void doit() { in doit() function

12