0ad5431018ae6563f454e5b9c3ac3376dcecacce
[oota-llvm.git] / include / llvm / Argument.h
1 //===-- llvm/Argument.h - Definition of the Argument class ------*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file declares the Argument class. 
11 //
12 //===----------------------------------------------------------------------===//
13
14 #ifndef LLVM_ARGUMENT_H
15 #define LLVM_ARGUMENT_H
16
17 #include "llvm/Value.h"
18 #include "llvm/Attributes.h"
19 #include "llvm/ADT/ilist_node.h"
20
21 namespace llvm {
22
23 template<typename ValueSubClass, typename ItemParentClass>
24   class SymbolTableListTraits;
25
26 /// A class to represent an incoming formal argument to a Function. An argument
27 /// is a very simple Value. It is essentially a named (optional) type. When used
28 /// in the body of a function, it represents the value of the actual argument
29 /// the function was called with.
30 /// @brief LLVM Argument representation  
31 class Argument : public Value, public ilist_node<Argument> {
32   Function *Parent;
33
34   friend class SymbolTableListTraits<Argument, Function>;
35   void setParent(Function *parent);
36
37 public:
38   /// Argument ctor - If Function argument is specified, this argument is
39   /// inserted at the end of the argument list for the function.
40   ///
41   explicit Argument(const Type *Ty, const std::string &Name = "",
42                     Function *F = 0);
43
44   inline const Function *getParent() const { return Parent; }
45   inline       Function *getParent()       { return Parent; }
46
47   /// getArgNo - Return the index of this formal argument in its containing
48   /// function.  For example in "void foo(int a, float b)" a is 0 and b is 1. 
49   unsigned getArgNo() const;
50   
51   /// hasByValAttr - Return true if this argument has the byval attribute on it
52   /// in its containing function.
53   bool hasByValAttr() const;
54
55   /// hasNoAliasAttr - Return true if this argument has the noalias attribute on
56   /// it in its containing function.
57   bool hasNoAliasAttr() const;
58   
59   /// hasSRetAttr - Return true if this argument has the sret attribute on it in
60   /// its containing function.
61   bool hasStructRetAttr() const;
62
63   /// addAttr - Add a ParamAttr to an argument
64   void addAttr(Attributes);
65   
66   /// removeAttr - Remove a ParamAttr from an argument
67   void removeAttr(Attributes);
68
69   /// classof - Methods for support type inquiry through isa, cast, and
70   /// dyn_cast:
71   ///
72   static inline bool classof(const Argument *) { return true; }
73   static inline bool classof(const Value *V) {
74     return V->getValueID() == ArgumentVal;
75   }
76 };
77
78 } // End llvm namespace
79
80 #endif