assert(Init && "Unable to create initialiser for static decl");
std::string ContextName;
- if (CurFuncDecl)
- ContextName = CurFuncDecl->getName();
+ if (const FunctionDecl * FD = dyn_cast<FunctionDecl>(CurFuncDecl))
+ ContextName = FD->getName();
else
assert(0 && "Unknown context for block var decl"); // FIXME Handle objc.
}
LValue CodeGenFunction::EmitPreDefinedLValue(const PreDefinedExpr *E) {
- std::string FunctionName(CurFuncDecl->getName());
+ std::string FunctionName;
+ if(const FunctionDecl *FD = dyn_cast<FunctionDecl>(CurFuncDecl)) {
+ FunctionName = FD->getName();
+ }
+ else {
+ assert(0 && "Attempting to load predefined constant for invalid decl type");
+ }
std::string GlobalVarName;
switch (E->getIdentType()) {
break;
}
- GlobalVarName += CurFuncDecl->getName();
+ GlobalVarName += FunctionName;
// FIXME: Can cache/reuse these within the module.
llvm::Constant *C=llvm::ConstantArray::get(FunctionName);
// Get object pointer and coerce object pointer to correct type.
llvm::Value *Object = EmitLValue(E->getBase()).getAddress();
+ Object = Builder.CreateLoad(Object, E->getDecl()->getName());
if (Object->getType() != ObjectType)
Object = Builder.CreateBitCast(Object, ObjectType);
+
// Return a pointer to the right element.
return LValue::MakeAddr(Builder.CreateStructGEP(Object, Index,
llvm::Value *SelPtr = Builder.CreateStructGEP(Selector, 0);
return Runtime->generateMessageSend(Builder, ConvertType(E->getType()),
- // FIXME: Self can be assigned to!
- CGF.CurFn->arg_begin(),
+ CGF.LoadObjCSelf(),
Receiver, SelPtr,
&Args[0], Args.size());
}
// TODO: Add something to AST to let the runtime specify the names and types
// of these.
llvm::Value *&DMEntry = LocalDeclMap[&(*OMD->getSelfDecl())];
- DMEntry = AI;
+ const llvm::Type *SelfTy = AI->getType();
+ llvm::Value *DeclPtr = new llvm::AllocaInst(SelfTy, 0, "self.addr",
+ AllocaInsertPt);
+
+ // Store the initial value into the alloca.
+ Builder.CreateStore(AI, DeclPtr);
+ DMEntry = DeclPtr;
++AI; ++AI;
assert(!verifyFunction(*CurFn) && "Generated method is not well formed.");
}
+llvm::Value *CodeGenFunction::LoadObjCSelf(void)
+{
+ if(const ObjCMethodDecl *OMD = dyn_cast<ObjCMethodDecl>(CurFuncDecl)) {
+ llvm::Value *SelfPtr = LocalDeclMap[&(*OMD->getSelfDecl())];
+ return Builder.CreateLoad(SelfPtr, "self");
+ }
+ return NULL;
+}
+
void CodeGenFunction::GenerateCode(const FunctionDecl *FD) {
LLVMIntTy = ConvertType(getContext().IntTy);
LLVMPointerWidth = static_cast<unsigned>(
getContext().getTypeSize(getContext().getPointerType(getContext().VoidTy)));
CurFuncDecl = FD;
- FnRetTy = CurFuncDecl->getType()->getAsFunctionType()->getResultType();
+ FnRetTy = FD->getType()->getAsFunctionType()->getResultType();
CurFn = cast<llvm::Function>(CGM.GetAddrOfFunctionDecl(FD, true));
typedef std::pair<llvm::Value *, llvm::Value *> ComplexPairTy;
llvm::LLVMFoldingBuilder Builder;
- const FunctionDecl *CurFuncDecl;
+ // Holds the Decl for the current function or method
+ const Decl *CurFuncDecl;
QualType FnRetTy;
llvm::Function *CurFn;
void GenerateCode(const FunctionDecl *FD);
const llvm::Type *ConvertType(QualType T);
+
+ llvm::Value *LoadObjCSelf();
/// hasAggregateLLVMType - Return true if the specified AST type will map into
/// an aggregate LLVM type or is void.