2003-09-20 03:34:44 +00:00
|
|
|
//===-- llvm/Argument.h - Definition of the Argument class ------*- C++ -*-===//
|
2005-04-21 20:19:05 +00:00
|
|
|
//
|
2003-10-20 20:19:47 +00:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 19:59:42 +00:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2005-04-21 20:19:05 +00:00
|
|
|
//
|
2003-10-20 20:19:47 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
2002-04-09 19:36:56 +00:00
|
|
|
//
|
2006-06-05 16:29:06 +00:00
|
|
|
// This file declares the Argument class.
|
2002-04-09 19:36:56 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef LLVM_ARGUMENT_H
|
|
|
|
#define LLVM_ARGUMENT_H
|
|
|
|
|
|
|
|
#include "llvm/Value.h"
|
|
|
|
|
2003-11-11 22:41:34 +00:00
|
|
|
namespace llvm {
|
|
|
|
|
2007-04-17 03:26:42 +00:00
|
|
|
template<typename ValueSubClass, typename ItemParentClass>
|
|
|
|
class SymbolTableListTraits;
|
2004-03-11 23:42:24 +00:00
|
|
|
|
2006-06-05 16:29:06 +00: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
|
2002-09-06 21:31:57 +00:00
|
|
|
class Argument : public Value { // Defined in the Function.cpp file
|
2002-04-09 19:36:56 +00:00
|
|
|
Function *Parent;
|
|
|
|
|
2002-06-25 16:12:52 +00:00
|
|
|
Argument *Prev, *Next; // Next and Prev links for our intrusive linked list
|
|
|
|
void setNext(Argument *N) { Next = N; }
|
|
|
|
void setPrev(Argument *N) { Prev = N; }
|
2007-04-17 03:26:42 +00:00
|
|
|
friend class SymbolTableListTraits<Argument, Function>;
|
2002-09-06 21:31:57 +00:00
|
|
|
void setParent(Function *parent);
|
2002-04-09 19:36:56 +00:00
|
|
|
|
|
|
|
public:
|
2002-09-06 21:31:57 +00:00
|
|
|
/// Argument ctor - If Function argument is specified, this argument is
|
|
|
|
/// inserted at the end of the argument list for the function.
|
|
|
|
///
|
2008-01-24 17:47:11 +00:00
|
|
|
explicit Argument(const Type *Ty, const std::string &Name = "",
|
2007-03-23 18:44:11 +00:00
|
|
|
Function *F = 0);
|
2002-04-09 19:36:56 +00:00
|
|
|
|
|
|
|
inline const Function *getParent() const { return Parent; }
|
|
|
|
inline Function *getParent() { return Parent; }
|
2005-04-21 20:19:05 +00:00
|
|
|
|
2008-01-24 17:47:11 +00: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;
|
|
|
|
|
|
|
|
/// hasNoAliasAttr - Return true if this argument has the noalias attribute on
|
|
|
|
/// it in its containing function.
|
|
|
|
bool hasNoAliasAttr() const;
|
|
|
|
|
2008-02-17 23:22:28 +00:00
|
|
|
/// hasSRetAttr - Return true if this argument has the sret attribute on it in
|
|
|
|
/// its containing function.
|
|
|
|
bool hasStructRetAttr() const;
|
|
|
|
|
2002-04-09 19:36:56 +00:00
|
|
|
virtual void print(std::ostream &OS) const;
|
2006-12-17 05:15:13 +00:00
|
|
|
void print(std::ostream *OS) const {
|
|
|
|
if (OS) print(*OS);
|
|
|
|
}
|
2002-04-09 19:36:56 +00:00
|
|
|
|
2002-08-25 22:54:55 +00:00
|
|
|
/// classof - Methods for support type inquiry through isa, cast, and
|
|
|
|
/// dyn_cast:
|
|
|
|
///
|
2002-04-09 19:36:56 +00:00
|
|
|
static inline bool classof(const Argument *) { return true; }
|
|
|
|
static inline bool classof(const Value *V) {
|
2007-04-13 18:12:09 +00:00
|
|
|
return V->getValueID() == ArgumentVal;
|
2002-04-09 19:36:56 +00:00
|
|
|
}
|
2007-05-23 05:46:04 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
// getNext/Prev - Return the next or previous argument in the list.
|
|
|
|
Argument *getNext() { return Next; }
|
|
|
|
const Argument *getNext() const { return Next; }
|
|
|
|
Argument *getPrev() { return Prev; }
|
|
|
|
const Argument *getPrev() const { return Prev; }
|
2002-04-09 19:36:56 +00:00
|
|
|
};
|
|
|
|
|
2003-11-11 22:41:34 +00:00
|
|
|
} // End llvm namespace
|
|
|
|
|
2002-04-09 19:36:56 +00:00
|
|
|
#endif
|