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
|
|
|
//
|
2006-06-05 18:29:06 +02:00
|
|
|
// This file declares the Argument class.
|
2002-04-09 21:36:56 +02:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef LLVM_ARGUMENT_H
|
|
|
|
#define LLVM_ARGUMENT_H
|
|
|
|
|
|
|
|
#include "llvm/Value.h"
|
2008-09-24 01:03:40 +02:00
|
|
|
#include "llvm/Attributes.h"
|
2008-08-28 02:20:07 +02:00
|
|
|
#include "llvm/ADT/ilist_node.h"
|
2009-12-29 08:12:03 +01:00
|
|
|
#include "llvm/ADT/Twine.h"
|
2002-04-09 21:36:56 +02:00
|
|
|
|
2003-11-11 23:41:34 +01:00
|
|
|
namespace llvm {
|
|
|
|
|
2007-04-17 05:26:42 +02:00
|
|
|
template<typename ValueSubClass, typename ItemParentClass>
|
|
|
|
class SymbolTableListTraits;
|
2004-03-12 00:42:24 +01:00
|
|
|
|
2006-06-05 18:29:06 +02:00
|
|
|
/// A class to represent an incoming formal argument to a Function. An argument
|
|
|
|
/// is a very simple Value. It is essentially a named (optional) type. When used
|
|
|
|
/// in the body of a function, it represents the value of the actual argument
|
|
|
|
/// the function was called with.
|
|
|
|
/// @brief LLVM Argument representation
|
2008-07-28 23:51:04 +02:00
|
|
|
class Argument : public Value, public ilist_node<Argument> {
|
2002-04-09 21:36:56 +02:00
|
|
|
Function *Parent;
|
|
|
|
|
2007-04-17 05:26:42 +02:00
|
|
|
friend class SymbolTableListTraits<Argument, Function>;
|
2002-09-06 23:31:57 +02:00
|
|
|
void setParent(Function *parent);
|
2002-04-09 21:36:56 +02:00
|
|
|
|
|
|
|
public:
|
2002-09-06 23:31:57 +02:00
|
|
|
/// Argument ctor - If Function argument is specified, this argument is
|
|
|
|
/// inserted at the end of the argument list for the function.
|
|
|
|
///
|
2009-07-25 06:41:11 +02:00
|
|
|
explicit Argument(const Type *Ty, const Twine &Name = "", Function *F = 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
|
|
|
|
2008-01-24 18:47:11 +01:00
|
|
|
/// getArgNo - Return the index of this formal argument in its containing
|
|
|
|
/// function. For example in "void foo(int a, float b)" a is 0 and b is 1.
|
|
|
|
unsigned getArgNo() const;
|
|
|
|
|
|
|
|
/// hasByValAttr - Return true if this argument has the byval attribute on it
|
|
|
|
/// in its containing function.
|
|
|
|
bool hasByValAttr() const;
|
|
|
|
|
2009-12-11 09:36:17 +01:00
|
|
|
/// hasNestAttr - Return true if this argument has the nest attribute on
|
|
|
|
/// it in its containing function.
|
|
|
|
bool hasNestAttr() const;
|
|
|
|
|
2008-01-24 18:47:11 +01:00
|
|
|
/// hasNoAliasAttr - Return true if this argument has the noalias attribute on
|
|
|
|
/// it in its containing function.
|
|
|
|
bool hasNoAliasAttr() const;
|
|
|
|
|
2008-12-31 19:08:59 +01:00
|
|
|
/// hasNoCaptureAttr - Return true if this argument has the nocapture
|
|
|
|
/// attribute on it in its containing function.
|
|
|
|
bool hasNoCaptureAttr() const;
|
|
|
|
|
2008-02-18 00:22:28 +01:00
|
|
|
/// hasSRetAttr - Return true if this argument has the sret attribute on it in
|
|
|
|
/// its containing function.
|
|
|
|
bool hasStructRetAttr() const;
|
2008-04-28 19:37:06 +02:00
|
|
|
|
2008-09-25 23:00:45 +02:00
|
|
|
/// addAttr - Add a Attribute to an argument
|
2008-09-24 01:03:40 +02:00
|
|
|
void addAttr(Attributes);
|
2008-02-18 00:22:28 +01:00
|
|
|
|
2008-09-25 23:00:45 +02:00
|
|
|
/// removeAttr - Remove a Attribute from an argument
|
2008-09-24 01:03:40 +02:00
|
|
|
void removeAttr(Attributes);
|
2008-04-28 19:37:06 +02:00
|
|
|
|
2002-08-26 00:54:55 +02:00
|
|
|
/// classof - Methods for support type inquiry through isa, cast, and
|
|
|
|
/// dyn_cast:
|
|
|
|
///
|
2002-04-09 21:36:56 +02:00
|
|
|
static inline bool classof(const Argument *) { return true; }
|
|
|
|
static inline 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
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2003-11-11 23:41:34 +01:00
|
|
|
} // End llvm namespace
|
|
|
|
|
2002-04-09 21:36:56 +02:00
|
|
|
#endif
|