2015-06-04 04:03:15 +02:00
|
|
|
//===- MemoryLocation.cpp - Memory location descriptions -------------------==//
|
|
|
|
//
|
2019-01-19 09:50:56 +01:00
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
2015-06-04 04:03:15 +02:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "llvm/Analysis/MemoryLocation.h"
|
2015-06-17 09:12:40 +02:00
|
|
|
#include "llvm/Analysis/TargetLibraryInfo.h"
|
2015-06-04 04:03:15 +02:00
|
|
|
#include "llvm/IR/BasicBlock.h"
|
|
|
|
#include "llvm/IR/DataLayout.h"
|
|
|
|
#include "llvm/IR/Instructions.h"
|
|
|
|
#include "llvm/IR/IntrinsicInst.h"
|
2019-12-11 16:55:26 +01:00
|
|
|
#include "llvm/IR/IntrinsicsARM.h"
|
2015-06-04 04:03:15 +02:00
|
|
|
#include "llvm/IR/LLVMContext.h"
|
|
|
|
#include "llvm/IR/Module.h"
|
|
|
|
#include "llvm/IR/Type.h"
|
|
|
|
using namespace llvm;
|
|
|
|
|
2018-10-10 03:35:22 +02:00
|
|
|
void LocationSize::print(raw_ostream &OS) const {
|
|
|
|
OS << "LocationSize::";
|
|
|
|
if (*this == unknown())
|
|
|
|
OS << "unknown";
|
|
|
|
else if (*this == mapEmpty())
|
|
|
|
OS << "mapEmpty";
|
|
|
|
else if (*this == mapTombstone())
|
|
|
|
OS << "mapTombstone";
|
2018-10-10 08:39:40 +02:00
|
|
|
else if (isPrecise())
|
2018-10-10 03:35:22 +02:00
|
|
|
OS << "precise(" << getValue() << ')';
|
2018-10-10 08:39:40 +02:00
|
|
|
else
|
|
|
|
OS << "upperBound(" << getValue() << ')';
|
2018-10-10 03:35:22 +02:00
|
|
|
}
|
|
|
|
|
2015-06-04 04:03:15 +02:00
|
|
|
MemoryLocation MemoryLocation::get(const LoadInst *LI) {
|
|
|
|
AAMDNodes AATags;
|
|
|
|
LI->getAAMetadata(AATags);
|
|
|
|
const auto &DL = LI->getModule()->getDataLayout();
|
|
|
|
|
2018-12-23 04:36:44 +01:00
|
|
|
return MemoryLocation(
|
|
|
|
LI->getPointerOperand(),
|
|
|
|
LocationSize::precise(DL.getTypeStoreSize(LI->getType())), AATags);
|
2015-06-04 04:03:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
MemoryLocation MemoryLocation::get(const StoreInst *SI) {
|
|
|
|
AAMDNodes AATags;
|
|
|
|
SI->getAAMetadata(AATags);
|
|
|
|
const auto &DL = SI->getModule()->getDataLayout();
|
|
|
|
|
|
|
|
return MemoryLocation(SI->getPointerOperand(),
|
2018-12-23 04:36:44 +01:00
|
|
|
LocationSize::precise(DL.getTypeStoreSize(
|
|
|
|
SI->getValueOperand()->getType())),
|
2015-06-04 04:03:15 +02:00
|
|
|
AATags);
|
|
|
|
}
|
|
|
|
|
|
|
|
MemoryLocation MemoryLocation::get(const VAArgInst *VI) {
|
|
|
|
AAMDNodes AATags;
|
|
|
|
VI->getAAMetadata(AATags);
|
|
|
|
|
2018-10-10 23:28:44 +02:00
|
|
|
return MemoryLocation(VI->getPointerOperand(), LocationSize::unknown(),
|
|
|
|
AATags);
|
2015-06-04 04:03:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
MemoryLocation MemoryLocation::get(const AtomicCmpXchgInst *CXI) {
|
|
|
|
AAMDNodes AATags;
|
|
|
|
CXI->getAAMetadata(AATags);
|
|
|
|
const auto &DL = CXI->getModule()->getDataLayout();
|
|
|
|
|
2018-12-23 04:36:44 +01:00
|
|
|
return MemoryLocation(CXI->getPointerOperand(),
|
|
|
|
LocationSize::precise(DL.getTypeStoreSize(
|
|
|
|
CXI->getCompareOperand()->getType())),
|
|
|
|
AATags);
|
2015-06-04 04:03:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
MemoryLocation MemoryLocation::get(const AtomicRMWInst *RMWI) {
|
|
|
|
AAMDNodes AATags;
|
|
|
|
RMWI->getAAMetadata(AATags);
|
|
|
|
const auto &DL = RMWI->getModule()->getDataLayout();
|
|
|
|
|
|
|
|
return MemoryLocation(RMWI->getPointerOperand(),
|
2018-12-23 04:36:44 +01:00
|
|
|
LocationSize::precise(DL.getTypeStoreSize(
|
|
|
|
RMWI->getValOperand()->getType())),
|
2015-06-04 04:03:15 +02:00
|
|
|
AATags);
|
|
|
|
}
|
|
|
|
|
|
|
|
MemoryLocation MemoryLocation::getForSource(const MemTransferInst *MTI) {
|
2018-04-23 21:06:49 +02:00
|
|
|
return getForSource(cast<AnyMemTransferInst>(MTI));
|
|
|
|
}
|
|
|
|
|
|
|
|
MemoryLocation MemoryLocation::getForSource(const AtomicMemTransferInst *MTI) {
|
|
|
|
return getForSource(cast<AnyMemTransferInst>(MTI));
|
|
|
|
}
|
|
|
|
|
|
|
|
MemoryLocation MemoryLocation::getForSource(const AnyMemTransferInst *MTI) {
|
2018-12-23 04:36:44 +01:00
|
|
|
auto Size = LocationSize::unknown();
|
2015-06-04 04:03:15 +02:00
|
|
|
if (ConstantInt *C = dyn_cast<ConstantInt>(MTI->getLength()))
|
2018-12-23 04:36:44 +01:00
|
|
|
Size = LocationSize::precise(C->getValue().getZExtValue());
|
2015-06-04 04:03:15 +02:00
|
|
|
|
|
|
|
// memcpy/memmove can have AA tags. For memcpy, they apply
|
|
|
|
// to both the source and the destination.
|
|
|
|
AAMDNodes AATags;
|
|
|
|
MTI->getAAMetadata(AATags);
|
|
|
|
|
|
|
|
return MemoryLocation(MTI->getRawSource(), Size, AATags);
|
|
|
|
}
|
|
|
|
|
2018-04-23 21:06:49 +02:00
|
|
|
MemoryLocation MemoryLocation::getForDest(const MemIntrinsic *MI) {
|
|
|
|
return getForDest(cast<AnyMemIntrinsic>(MI));
|
|
|
|
}
|
|
|
|
|
|
|
|
MemoryLocation MemoryLocation::getForDest(const AtomicMemIntrinsic *MI) {
|
|
|
|
return getForDest(cast<AnyMemIntrinsic>(MI));
|
|
|
|
}
|
|
|
|
|
|
|
|
MemoryLocation MemoryLocation::getForDest(const AnyMemIntrinsic *MI) {
|
2018-12-23 04:36:44 +01:00
|
|
|
auto Size = LocationSize::unknown();
|
2018-04-23 21:06:49 +02:00
|
|
|
if (ConstantInt *C = dyn_cast<ConstantInt>(MI->getLength()))
|
2018-12-23 04:36:44 +01:00
|
|
|
Size = LocationSize::precise(C->getValue().getZExtValue());
|
2015-06-04 04:03:15 +02:00
|
|
|
|
|
|
|
// memcpy/memmove can have AA tags. For memcpy, they apply
|
|
|
|
// to both the source and the destination.
|
|
|
|
AAMDNodes AATags;
|
2018-04-23 21:06:49 +02:00
|
|
|
MI->getAAMetadata(AATags);
|
2015-06-04 04:03:15 +02:00
|
|
|
|
2018-04-23 21:06:49 +02:00
|
|
|
return MemoryLocation(MI->getRawDest(), Size, AATags);
|
2015-06-04 04:03:15 +02:00
|
|
|
}
|
2015-06-17 09:12:40 +02:00
|
|
|
|
2019-01-07 06:42:51 +01:00
|
|
|
MemoryLocation MemoryLocation::getForArgument(const CallBase *Call,
|
2015-06-17 09:12:40 +02:00
|
|
|
unsigned ArgIdx,
|
2018-09-07 23:36:11 +02:00
|
|
|
const TargetLibraryInfo *TLI) {
|
2015-06-17 09:12:40 +02:00
|
|
|
AAMDNodes AATags;
|
2019-01-07 06:42:51 +01:00
|
|
|
Call->getAAMetadata(AATags);
|
|
|
|
const Value *Arg = Call->getArgOperand(ArgIdx);
|
2015-06-17 09:12:40 +02:00
|
|
|
|
|
|
|
// We may be able to produce an exact size for known intrinsics.
|
2019-01-07 06:42:51 +01:00
|
|
|
if (const IntrinsicInst *II = dyn_cast<IntrinsicInst>(Call)) {
|
2015-06-17 09:12:40 +02:00
|
|
|
const DataLayout &DL = II->getModule()->getDataLayout();
|
|
|
|
|
|
|
|
switch (II->getIntrinsicID()) {
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
case Intrinsic::memset:
|
|
|
|
case Intrinsic::memcpy:
|
|
|
|
case Intrinsic::memmove:
|
|
|
|
assert((ArgIdx == 0 || ArgIdx == 1) &&
|
|
|
|
"Invalid argument index for memory intrinsic");
|
|
|
|
if (ConstantInt *LenCI = dyn_cast<ConstantInt>(II->getArgOperand(2)))
|
2018-12-23 04:36:44 +01:00
|
|
|
return MemoryLocation(Arg, LocationSize::precise(LenCI->getZExtValue()),
|
|
|
|
AATags);
|
2015-06-17 09:12:40 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
case Intrinsic::lifetime_start:
|
|
|
|
case Intrinsic::lifetime_end:
|
|
|
|
case Intrinsic::invariant_start:
|
|
|
|
assert(ArgIdx == 1 && "Invalid argument index");
|
|
|
|
return MemoryLocation(
|
2018-12-23 04:36:44 +01:00
|
|
|
Arg,
|
|
|
|
LocationSize::precise(
|
|
|
|
cast<ConstantInt>(II->getArgOperand(0))->getZExtValue()),
|
|
|
|
AATags);
|
2015-06-17 09:12:40 +02:00
|
|
|
|
|
|
|
case Intrinsic::invariant_end:
|
2018-08-16 22:48:55 +02:00
|
|
|
// The first argument to an invariant.end is a "descriptor" type (e.g. a
|
|
|
|
// pointer to a empty struct) which is never actually dereferenced.
|
|
|
|
if (ArgIdx == 0)
|
2018-12-23 04:36:44 +01:00
|
|
|
return MemoryLocation(Arg, LocationSize::precise(0), AATags);
|
2015-06-17 09:12:40 +02:00
|
|
|
assert(ArgIdx == 2 && "Invalid argument index");
|
|
|
|
return MemoryLocation(
|
2018-12-23 04:36:44 +01:00
|
|
|
Arg,
|
|
|
|
LocationSize::precise(
|
|
|
|
cast<ConstantInt>(II->getArgOperand(1))->getZExtValue()),
|
|
|
|
AATags);
|
2015-06-17 09:12:40 +02:00
|
|
|
|
|
|
|
case Intrinsic::arm_neon_vld1:
|
|
|
|
assert(ArgIdx == 0 && "Invalid argument index");
|
|
|
|
// LLVM's vld1 and vst1 intrinsics currently only support a single
|
|
|
|
// vector register.
|
2018-12-23 04:36:44 +01:00
|
|
|
return MemoryLocation(
|
|
|
|
Arg, LocationSize::precise(DL.getTypeStoreSize(II->getType())),
|
|
|
|
AATags);
|
2015-06-17 09:12:40 +02:00
|
|
|
|
|
|
|
case Intrinsic::arm_neon_vst1:
|
|
|
|
assert(ArgIdx == 0 && "Invalid argument index");
|
2018-12-23 04:36:44 +01:00
|
|
|
return MemoryLocation(Arg,
|
|
|
|
LocationSize::precise(DL.getTypeStoreSize(
|
|
|
|
II->getArgOperand(1)->getType())),
|
|
|
|
AATags);
|
2015-06-17 09:12:40 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// We can bound the aliasing properties of memset_pattern16 just as we can
|
|
|
|
// for memcpy/memset. This is particularly important because the
|
|
|
|
// LoopIdiomRecognizer likes to turn loops into calls to memset_pattern16
|
|
|
|
// whenever possible.
|
[Analysis] Add LibFunc_ prefix to enums in TargetLibraryInfo. (NFC)
Summary:
The LibFunc::Func enum holds enumerators named for libc functions.
Unfortunately, there are real situations, including libc implementations, where
function names are actually macros (musl uses "#define fopen64 fopen", for
example; any other transitively visible macro would have similar effects).
Strictly speaking, a conforming C++ Standard Library should provide any such
macros as functions instead (via <cstdio>). However, there are some "library"
functions which are not part of the standard, and thus not subject to this
rule (fopen64, for example). So, in order to be both portable and consistent,
the enum should not use the bare function names.
The old enum naming used a namespace LibFunc and an enum Func, with bare
enumerators. This patch changes LibFunc to be an enum with enumerators prefixed
with "LibFFunc_". (Unfortunately, a scoped enum is not sufficient to override
macros.)
There are additional changes required in clang.
Reviewers: rsmith
Subscribers: mehdi_amini, mzolotukhin, nemanjai, llvm-commits
Differential Revision: https://reviews.llvm.org/D28476
llvm-svn: 292848
2017-01-24 00:16:46 +01:00
|
|
|
LibFunc F;
|
2019-01-07 06:42:51 +01:00
|
|
|
if (TLI && Call->getCalledFunction() &&
|
|
|
|
TLI->getLibFunc(*Call->getCalledFunction(), F) &&
|
2018-09-07 23:36:11 +02:00
|
|
|
F == LibFunc_memset_pattern16 && TLI->has(F)) {
|
2015-06-17 09:12:40 +02:00
|
|
|
assert((ArgIdx == 0 || ArgIdx == 1) &&
|
|
|
|
"Invalid argument index for memset_pattern16");
|
|
|
|
if (ArgIdx == 1)
|
2018-12-23 04:36:44 +01:00
|
|
|
return MemoryLocation(Arg, LocationSize::precise(16), AATags);
|
2019-01-07 06:42:51 +01:00
|
|
|
if (const ConstantInt *LenCI =
|
|
|
|
dyn_cast<ConstantInt>(Call->getArgOperand(2)))
|
2018-12-23 04:36:44 +01:00
|
|
|
return MemoryLocation(Arg, LocationSize::precise(LenCI->getZExtValue()),
|
|
|
|
AATags);
|
2015-06-17 09:12:40 +02:00
|
|
|
}
|
|
|
|
// FIXME: Handle memset_pattern4 and memset_pattern8 also.
|
|
|
|
|
2019-01-07 06:42:51 +01:00
|
|
|
return MemoryLocation(Call->getArgOperand(ArgIdx), LocationSize::unknown(),
|
2018-10-10 23:28:44 +02:00
|
|
|
AATags);
|
2015-06-17 09:12:40 +02:00
|
|
|
}
|