2013-07-10 18:49:00 +00:00
|
|
|
//===- ObjCARCAliasAnalysis.h - ObjC ARC Optimization -*- C++ -*-----------===//
|
2013-01-28 05:51:54 +00:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
/// \file
|
|
|
|
/// This file declares a simple ARC-aware AliasAnalysis using special knowledge
|
|
|
|
/// of Objective C to enhance other optimization passes which rely on the Alias
|
|
|
|
/// Analysis infrastructure.
|
|
|
|
///
|
|
|
|
/// WARNING: This file knows about certain library functions. It recognizes them
|
|
|
|
/// by name, and hardwires knowledge of their semantics.
|
|
|
|
///
|
|
|
|
/// WARNING: This file knows about how certain Objective-C library functions are
|
|
|
|
/// used. Naive LLVM IR transformations which would otherwise be
|
|
|
|
/// behavior-preserving may break these assumptions.
|
|
|
|
///
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2014-08-13 16:26:38 +00:00
|
|
|
#ifndef LLVM_LIB_TRANSFORMS_OBJCARC_OBJCARCALIASANALYSIS_H
|
|
|
|
#define LLVM_LIB_TRANSFORMS_OBJCARC_OBJCARCALIASANALYSIS_H
|
2013-01-28 05:51:54 +00:00
|
|
|
|
2013-01-29 04:09:24 +00:00
|
|
|
#include "llvm/Analysis/AliasAnalysis.h"
|
|
|
|
#include "llvm/Pass.h"
|
|
|
|
|
2013-01-28 05:51:54 +00:00
|
|
|
namespace llvm {
|
|
|
|
namespace objcarc {
|
|
|
|
|
|
|
|
/// \brief This is a simple alias analysis implementation that uses knowledge
|
|
|
|
/// of ARC constructs to answer queries.
|
|
|
|
///
|
|
|
|
/// TODO: This class could be generalized to know about other ObjC-specific
|
|
|
|
/// tricks. Such as knowing that ivars in the non-fragile ABI are non-aliasing
|
|
|
|
/// even though their offsets are dynamic.
|
2013-09-11 18:05:11 +00:00
|
|
|
class ObjCARCAliasAnalysis : public ImmutablePass,
|
|
|
|
public AliasAnalysis {
|
2013-01-28 05:51:54 +00:00
|
|
|
public:
|
|
|
|
static char ID; // Class identification, replacement for typeinfo
|
|
|
|
ObjCARCAliasAnalysis() : ImmutablePass(ID) {
|
|
|
|
initializeObjCARCAliasAnalysisPass(*PassRegistry::getPassRegistry());
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
2015-03-04 18:43:29 +00:00
|
|
|
bool doInitialization(Module &M) override;
|
2013-01-28 05:51:54 +00:00
|
|
|
|
|
|
|
/// This method is used when a pass implements an analysis interface through
|
|
|
|
/// multiple inheritance. If needed, it should override this to adjust the
|
|
|
|
/// this pointer as needed for the specified pass info.
|
2014-03-05 09:10:37 +00:00
|
|
|
void *getAdjustedAnalysisPointer(const void *PI) override {
|
2013-01-28 05:51:54 +00:00
|
|
|
if (PI == &AliasAnalysis::ID)
|
|
|
|
return static_cast<AliasAnalysis *>(this);
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
2014-03-05 09:10:37 +00:00
|
|
|
void getAnalysisUsage(AnalysisUsage &AU) const override;
|
2015-06-17 07:18:54 +00:00
|
|
|
AliasResult alias(const MemoryLocation &LocA,
|
|
|
|
const MemoryLocation &LocB) override;
|
|
|
|
bool pointsToConstantMemory(const MemoryLocation &Loc,
|
|
|
|
bool OrLocal) override;
|
2014-03-05 09:10:37 +00:00
|
|
|
ModRefBehavior getModRefBehavior(ImmutableCallSite CS) override;
|
|
|
|
ModRefBehavior getModRefBehavior(const Function *F) override;
|
|
|
|
ModRefResult getModRefInfo(ImmutableCallSite CS,
|
2015-06-17 07:18:54 +00:00
|
|
|
const MemoryLocation &Loc) override;
|
2014-03-05 09:10:37 +00:00
|
|
|
ModRefResult getModRefInfo(ImmutableCallSite CS1,
|
|
|
|
ImmutableCallSite CS2) override;
|
2013-01-28 05:51:54 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace objcarc
|
|
|
|
} // namespace llvm
|
|
|
|
|
2014-08-13 16:26:38 +00:00
|
|
|
#endif
|