Inna Palant | ff3f07a | 2019-07-11 16:15:26 -0700 | [diff] [blame] | 1 | //===- MemoryBuiltinsTest.cpp - Tests for utilities in MemoryBuiltins.h ---===// |
| 2 | // |
Chih-Hung Hsieh | 0860053 | 2019-12-19 15:55:38 -0800 | [diff] [blame] | 3 | // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. |
| 4 | // See https://llvm.org/LICENSE.txt for license information. |
| 5 | // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception |
Inna Palant | ff3f07a | 2019-07-11 16:15:26 -0700 | [diff] [blame] | 6 | // |
| 7 | //===----------------------------------------------------------------------===// |
| 8 | |
| 9 | #include "llvm/Analysis/MemoryBuiltins.h" |
| 10 | #include "llvm/IR/Attributes.h" |
| 11 | #include "llvm/IR/Constants.h" |
| 12 | #include "llvm/IR/Function.h" |
| 13 | #include "llvm/IR/LLVMContext.h" |
| 14 | #include "llvm/IR/Module.h" |
| 15 | #include "gtest/gtest.h" |
| 16 | |
| 17 | using namespace llvm; |
| 18 | |
| 19 | namespace { |
| 20 | // allocsize should not imply that a function is a traditional allocation |
| 21 | // function (e.g. that can be optimized out/...); it just tells us how many |
| 22 | // bytes exist at the pointer handed back by the function. |
| 23 | TEST(AllocSize, AllocationBuiltinsTest) { |
| 24 | LLVMContext Context; |
| 25 | Module M("", Context); |
| 26 | IntegerType *ArgTy = Type::getInt32Ty(Context); |
| 27 | |
| 28 | Function *AllocSizeFn = Function::Create( |
Chris Wailes | c25c045 | 2024-05-02 11:11:34 -0700 | [diff] [blame] | 29 | FunctionType::get(PointerType::getUnqual(Context), {ArgTy}, false), |
Inna Palant | ff3f07a | 2019-07-11 16:15:26 -0700 | [diff] [blame] | 30 | GlobalValue::ExternalLinkage, "F", &M); |
| 31 | |
Charisee | 635618d | 2023-06-01 20:46:00 +0000 | [diff] [blame] | 32 | AllocSizeFn->addFnAttr( |
| 33 | Attribute::getWithAllocSizeArgs(Context, 1, std::nullopt)); |
Inna Palant | ff3f07a | 2019-07-11 16:15:26 -0700 | [diff] [blame] | 34 | |
| 35 | // 100 is arbitrary. |
| 36 | std::unique_ptr<CallInst> Caller( |
| 37 | CallInst::Create(AllocSizeFn, {ConstantInt::get(ArgTy, 100)})); |
| 38 | |
| 39 | const TargetLibraryInfo *TLI = nullptr; |
Inna Palant | ff3f07a | 2019-07-11 16:15:26 -0700 | [diff] [blame] | 40 | EXPECT_FALSE(isAllocLikeFn(Caller.get(), TLI)); |
| 41 | |
| 42 | // FIXME: We might be able to treat allocsize functions as general allocation |
Chris Wailes | 2805eef | 2022-04-07 11:22:56 -0700 | [diff] [blame] | 43 | // functions. |
Inna Palant | ff3f07a | 2019-07-11 16:15:26 -0700 | [diff] [blame] | 44 | EXPECT_FALSE(isAllocationFn(Caller.get(), TLI)); |
| 45 | } |
| 46 | } |