2003-09-20 05:34:44 +02:00
|
|
|
//===-- llvm/Argument.h - Definition of the Argument class ------*- C++ -*-===//
|
2005-04-21 22:19:05 +02:00
|
|
|
//
|
2003-10-20 22:19:47 +02:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 20:59:42 +01:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2005-04-21 22:19:05 +02:00
|
|
|
//
|
2003-10-20 22:19:47 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
2002-04-09 21:36:56 +02:00
|
|
|
//
|
2013-01-20 06:03:39 +01:00
|
|
|
// This file declares the Argument class.
|
2002-04-09 21:36:56 +02:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2013-01-10 01:45:19 +01:00
|
|
|
#ifndef LLVM_IR_ARGUMENT_H
|
|
|
|
#define LLVM_IR_ARGUMENT_H
|
2002-04-09 21:36:56 +02:00
|
|
|
|
2009-12-29 08:12:03 +01:00
|
|
|
#include "llvm/ADT/Twine.h"
|
2012-12-03 18:02:12 +01:00
|
|
|
#include "llvm/ADT/ilist_node.h"
|
2013-01-02 12:36:10 +01:00
|
|
|
#include "llvm/IR/Attributes.h"
|
|
|
|
#include "llvm/IR/Value.h"
|
2002-04-09 21:36:56 +02:00
|
|
|
|
2003-11-11 23:41:34 +01:00
|
|
|
namespace llvm {
|
|
|
|
|
2013-01-20 06:03:39 +01:00
|
|
|
/// This class represents an incoming formal argument to a Function. A formal
|
|
|
|
/// argument, since it is ``formal'', does not contain an actual value but
|
|
|
|
/// instead represents the type, argument number, and attributes of an argument
|
|
|
|
/// for a specific function. When used in the body of said function, the
|
|
|
|
/// argument of course represents the value of the actual argument that the
|
|
|
|
/// function was called with.
|
[IR] De-virtualize ~Value to save a vptr
Summary:
Implements PR889
Removing the virtual table pointer from Value saves 1% of RSS when doing
LTO of llc on Linux. The impact on time was positive, but too noisy to
conclusively say that performance improved. Here is a link to the
spreadsheet with the original data:
https://docs.google.com/spreadsheets/d/1F4FHir0qYnV0MEp2sYYp_BuvnJgWlWPhWOwZ6LbW7W4/edit?usp=sharing
This change makes it invalid to directly delete a Value, User, or
Instruction pointer. Instead, such code can be rewritten to a null check
and a call Value::deleteValue(). Value objects tend to have their
lifetimes managed through iplist, so for the most part, this isn't a big
deal. However, there are some places where LLVM deletes values, and
those places had to be migrated to deleteValue. I have also created
llvm::unique_value, which has a custom deleter, so it can be used in
place of std::unique_ptr<Value>.
I had to add the "DerivedUser" Deleter escape hatch for MemorySSA, which
derives from User outside of lib/IR. Code in IR cannot include MemorySSA
headers or call the MemoryAccess object destructors without introducing
a circular dependency, so we need some level of indirection.
Unfortunately, no class derived from User may have any virtual methods,
because adding a virtual method would break User::getHungOffOperands(),
which assumes that it can find the use list immediately prior to the
User object. I've added a static_assert to the appropriate OperandTraits
templates to help people avoid this trap.
Reviewers: chandlerc, mehdi_amini, pete, dberlin, george.burgess.iv
Reviewed By: chandlerc
Subscribers: krytarowski, eraman, george.burgess.iv, mzolotukhin, Prazek, nlewycky, hans, inglorion, pcc, tejohnson, dberlin, llvm-commits
Differential Revision: https://reviews.llvm.org/D31261
llvm-svn: 303362
2017-05-18 19:24:10 +02:00
|
|
|
class Argument final : public Value {
|
2002-04-09 21:36:56 +02:00
|
|
|
Function *Parent;
|
2017-03-16 23:25:45 +01:00
|
|
|
unsigned ArgNo;
|
2002-04-09 21:36:56 +02:00
|
|
|
|
2017-03-17 18:16:39 +01:00
|
|
|
friend class Function;
|
2002-09-06 23:31:57 +02:00
|
|
|
void setParent(Function *parent);
|
2002-04-09 21:36:56 +02:00
|
|
|
|
|
|
|
public:
|
2017-03-16 23:58:56 +01:00
|
|
|
/// Argument constructor.
|
2017-03-17 18:16:39 +01:00
|
|
|
explicit Argument(Type *Ty, const Twine &Name = "", Function *F = nullptr,
|
|
|
|
unsigned ArgNo = 0);
|
2002-04-09 21:36:56 +02:00
|
|
|
|
|
|
|
inline const Function *getParent() const { return Parent; }
|
|
|
|
inline Function *getParent() { return Parent; }
|
2005-04-21 22:19:05 +02:00
|
|
|
|
2017-02-14 17:43:49 +01:00
|
|
|
/// Return the index of this formal argument in its containing function.
|
2013-01-20 06:03:39 +01:00
|
|
|
///
|
|
|
|
/// For example in "void foo(int a, float b)" a is 0 and b is 1.
|
2017-03-17 18:16:39 +01:00
|
|
|
unsigned getArgNo() const {
|
|
|
|
assert(Parent && "can't get number of unparented arg");
|
|
|
|
return ArgNo;
|
|
|
|
}
|
2013-01-20 06:03:39 +01:00
|
|
|
|
2017-02-14 17:43:49 +01:00
|
|
|
/// Return true if this argument has the nonnull attribute. Also returns true
|
|
|
|
/// if at least one byte is known to be dereferenceable and the pointer is in
|
|
|
|
/// addrspace(0).
|
2014-05-20 03:23:40 +02:00
|
|
|
bool hasNonNullAttr() const;
|
|
|
|
|
2017-02-14 17:43:49 +01:00
|
|
|
/// If this argument has the dereferenceable attribute, return the number of
|
|
|
|
/// bytes known to be dereferenceable. Otherwise, zero is returned.
|
2014-07-18 17:51:28 +02:00
|
|
|
uint64_t getDereferenceableBytes() const;
|
2015-09-22 13:14:12 +02:00
|
|
|
|
2017-02-14 17:43:49 +01:00
|
|
|
/// If this argument has the dereferenceable_or_null attribute, return the
|
|
|
|
/// number of bytes known to be dereferenceable. Otherwise, zero is returned.
|
2015-05-06 19:41:54 +02:00
|
|
|
uint64_t getDereferenceableOrNullBytes() const;
|
2014-07-18 17:51:28 +02:00
|
|
|
|
2017-02-14 17:43:49 +01:00
|
|
|
/// Return true if this argument has the byval attribute.
|
2008-01-24 18:47:11 +01:00
|
|
|
bool hasByValAttr() const;
|
2013-01-20 06:03:39 +01:00
|
|
|
|
2017-02-14 17:43:49 +01:00
|
|
|
/// Return true if this argument has the swiftself attribute.
|
2016-03-29 19:37:21 +02:00
|
|
|
bool hasSwiftSelfAttr() const;
|
|
|
|
|
2017-02-14 17:43:49 +01:00
|
|
|
/// Return true if this argument has the swifterror attribute.
|
2016-04-01 23:41:15 +02:00
|
|
|
bool hasSwiftErrorAttr() const;
|
|
|
|
|
2017-02-14 17:43:49 +01:00
|
|
|
/// Return true if this argument has the byval attribute or inalloca
|
|
|
|
/// attribute. These attributes represent arguments being passed by value.
|
2014-01-18 00:58:17 +01:00
|
|
|
bool hasByValOrInAllocaAttr() const;
|
|
|
|
|
2017-02-14 17:43:49 +01:00
|
|
|
/// If this is a byval or inalloca argument, return its alignment.
|
2011-05-23 01:57:23 +02:00
|
|
|
unsigned getParamAlignment() const;
|
2008-01-24 18:47:11 +01:00
|
|
|
|
2017-02-14 17:43:49 +01:00
|
|
|
/// Return true if this argument has the nest attribute.
|
2009-12-11 09:36:17 +01:00
|
|
|
bool hasNestAttr() const;
|
|
|
|
|
2017-02-14 17:43:49 +01:00
|
|
|
/// Return true if this argument has the noalias attribute.
|
2008-01-24 18:47:11 +01:00
|
|
|
bool hasNoAliasAttr() const;
|
2013-01-20 06:03:39 +01:00
|
|
|
|
2017-02-14 17:43:49 +01:00
|
|
|
/// Return true if this argument has the nocapture attribute.
|
2008-12-31 19:08:59 +01:00
|
|
|
bool hasNoCaptureAttr() const;
|
2013-01-20 06:03:39 +01:00
|
|
|
|
2017-02-14 17:43:49 +01:00
|
|
|
/// Return true if this argument has the sret attribute.
|
2008-02-18 00:22:28 +01:00
|
|
|
bool hasStructRetAttr() const;
|
2008-04-28 19:37:06 +02:00
|
|
|
|
2017-02-14 17:43:49 +01:00
|
|
|
/// Return true if this argument has the returned attribute.
|
2013-04-20 07:14:40 +02:00
|
|
|
bool hasReturnedAttr() const;
|
|
|
|
|
2017-02-14 17:43:49 +01:00
|
|
|
/// Return true if this argument has the readonly or readnone attribute.
|
2013-07-06 02:29:58 +02:00
|
|
|
bool onlyReadsMemory() const;
|
|
|
|
|
2017-02-14 17:43:49 +01:00
|
|
|
/// Return true if this argument has the inalloca attribute.
|
2013-12-19 03:14:12 +01:00
|
|
|
bool hasInAllocaAttr() const;
|
2013-07-06 02:29:58 +02:00
|
|
|
|
2017-02-14 17:43:49 +01:00
|
|
|
/// Return true if this argument has the zext attribute.
|
2014-08-05 07:43:41 +02:00
|
|
|
bool hasZExtAttr() const;
|
|
|
|
|
2017-02-14 17:43:49 +01:00
|
|
|
/// Return true if this argument has the sext attribute.
|
2014-08-05 07:43:41 +02:00
|
|
|
bool hasSExtAttr() const;
|
|
|
|
|
2017-02-14 17:43:49 +01:00
|
|
|
/// Add attributes to an argument.
|
2017-04-19 19:28:52 +02:00
|
|
|
void addAttrs(AttrBuilder &B);
|
2013-01-20 06:03:39 +01:00
|
|
|
|
2017-04-19 19:28:52 +02:00
|
|
|
void addAttr(Attribute::AttrKind Kind);
|
|
|
|
|
|
|
|
void addAttr(Attribute Attr);
|
2016-03-14 02:37:29 +01:00
|
|
|
|
2017-02-14 17:43:49 +01:00
|
|
|
/// Remove attributes from an argument.
|
2017-04-19 19:28:52 +02:00
|
|
|
void removeAttr(Attribute::AttrKind Kind);
|
2016-03-14 02:37:29 +01:00
|
|
|
|
2017-02-14 17:43:49 +01:00
|
|
|
/// Check if an argument has a given attribute.
|
2016-03-14 02:37:29 +01:00
|
|
|
bool hasAttribute(Attribute::AttrKind Kind) const;
|
|
|
|
|
2017-02-14 17:43:49 +01:00
|
|
|
/// Method for support type inquiry through isa, cast, and dyn_cast.
|
2017-06-29 21:35:17 +02:00
|
|
|
static bool classof(const Value *V) {
|
2007-04-13 20:12:09 +02:00
|
|
|
return V->getValueID() == ArgumentVal;
|
2002-04-09 21:36:56 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2015-06-23 11:49:53 +02:00
|
|
|
} // End llvm namespace
|
2003-11-11 23:41:34 +01:00
|
|
|
|
2002-04-09 21:36:56 +02:00
|
|
|
#endif
|