mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 18:54:02 +01:00
Add an accessor to Function so that Passes can easily get access to the context.
llvm-svn: 74714
This commit is contained in:
parent
45b575e63c
commit
5c79283f31
@ -27,6 +27,7 @@
|
|||||||
namespace llvm {
|
namespace llvm {
|
||||||
|
|
||||||
class FunctionType;
|
class FunctionType;
|
||||||
|
class LLVMContext;
|
||||||
|
|
||||||
// Traits for intrusive list of basic blocks...
|
// Traits for intrusive list of basic blocks...
|
||||||
template<> struct ilist_traits<BasicBlock>
|
template<> struct ilist_traits<BasicBlock>
|
||||||
@ -126,6 +127,10 @@ public:
|
|||||||
const Type *getReturnType() const; // Return the type of the ret val
|
const Type *getReturnType() const; // Return the type of the ret val
|
||||||
const FunctionType *getFunctionType() const; // Return the FunctionType for me
|
const FunctionType *getFunctionType() const; // Return the FunctionType for me
|
||||||
|
|
||||||
|
/// getContext - Return a pointer to the LLVMContext associated with this
|
||||||
|
/// function, or NULL if this function is not bound to a context yet.
|
||||||
|
LLVMContext* getContext();
|
||||||
|
|
||||||
/// isVarArg - Return true if this function takes a variable number of
|
/// isVarArg - Return true if this function takes a variable number of
|
||||||
/// arguments.
|
/// arguments.
|
||||||
bool isVarArg() const;
|
bool isVarArg() const;
|
||||||
|
@ -114,6 +114,12 @@ void Argument::removeAttr(Attributes attr) {
|
|||||||
// Helper Methods in Function
|
// Helper Methods in Function
|
||||||
//===----------------------------------------------------------------------===//
|
//===----------------------------------------------------------------------===//
|
||||||
|
|
||||||
|
LLVMContext* Function::getContext() {
|
||||||
|
Module* M = getParent();
|
||||||
|
if (M) return &M->getContext();
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
const FunctionType *Function::getFunctionType() const {
|
const FunctionType *Function::getFunctionType() const {
|
||||||
return cast<FunctionType>(getType()->getElementType());
|
return cast<FunctionType>(getType()->getElementType());
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user