mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-17 04:24:00 +00:00
Recommit r235458: [opaque pointer type] Avoid using PointerType::getElementType for a few cases of CallInst
(reverted in r235533) Original commit message: "Calls to llvm::Value::mutateType are becoming extra-sensitive now that instructions have extra type information that will not be derived from operands or result type (alloca, gep, load, call/invoke, etc... ). The special-handling for mutateType will get more complicated as this work continues - it might be worth making mutateType virtual & pushing the complexity down into the classes that need special handling. But with only two significant uses of mutateType (vectorization and linking) this seems OK for now. Totally open to ideas/suggestions/improvements, of course. With this, and a bunch of exceptions, we can roundtrip an indirect call site through bitcode and IR. (a direct call site is actually trickier... I haven't figured out how to deal with the IR deserializer's lazy construction of Function/GlobalVariable decl's based on the type of the entity which means looking through the "pointer to T" type referring to the global)" The remapping done in ValueMapper for LTO was insufficient as the types weren't correctly mapped (though I was using the post-mapped operands, some of those operands might not have been mapped yet so the type wouldn't be post-mapped yet). Instead use the pre-mapped type and explicitly map all the types. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@235651 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -4207,12 +4207,11 @@ std::error_code BitcodeReader::ParseFunctionBody(Function *F) {
|
||||
PointerType *OpTy = dyn_cast<PointerType>(Callee->getType());
|
||||
if (!OpTy)
|
||||
return Error("Callee is not a pointer type");
|
||||
FunctionType *PFTy = dyn_cast<FunctionType>(OpTy->getElementType());
|
||||
if (!PFTy)
|
||||
return Error("Callee is not of pointer to function type");
|
||||
if (!FTy)
|
||||
FTy = PFTy;
|
||||
if (PFTy != FTy)
|
||||
if (!FTy) {
|
||||
FTy = dyn_cast<FunctionType>(OpTy->getElementType());
|
||||
if (!FTy)
|
||||
return Error("Callee is not of pointer to function type");
|
||||
} else if (OpTy->getElementType() != FTy)
|
||||
return Error("Explicit call type does not match pointee type of "
|
||||
"callee operand");
|
||||
if (Record.size() < FTy->getNumParams() + OpNum)
|
||||
@ -4243,7 +4242,7 @@ std::error_code BitcodeReader::ParseFunctionBody(Function *F) {
|
||||
}
|
||||
}
|
||||
|
||||
I = CallInst::Create(Callee, Args);
|
||||
I = CallInst::Create(FTy, Callee, Args);
|
||||
InstructionList.push_back(I);
|
||||
cast<CallInst>(I)->setCallingConv(
|
||||
static_cast<CallingConv::ID>((~(1U << 14) & CCInfo) >> 1));
|
||||
|
Reference in New Issue
Block a user