mirror of
https://github.com/RPCSX/llvm.git
synced 2024-12-03 09:21:13 +00:00
Properly read and write bitcodes for multiple return values.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@47521 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
dd3465eed1
commit
e9fabd94ab
@ -1337,17 +1337,30 @@ bool BitcodeReader::ParseFunctionBody(Function *F) {
|
||||
}
|
||||
|
||||
case bitc::FUNC_CODE_INST_RET: // RET: [opty,opval<optional>]
|
||||
if (Record.empty()) {
|
||||
I = new ReturnInst();
|
||||
break;
|
||||
} else {
|
||||
unsigned OpNum = 0;
|
||||
Value *Op;
|
||||
if (getValueTypePair(Record, OpNum, NextValueNo, Op) ||
|
||||
OpNum != Record.size())
|
||||
return Error("Invalid RET record");
|
||||
I = new ReturnInst(Op);
|
||||
break;
|
||||
{
|
||||
unsigned Size = Record.size();
|
||||
if (Size == 0) {
|
||||
I = new ReturnInst();
|
||||
break;
|
||||
} else if (Size == 1) {
|
||||
unsigned OpNum = 0;
|
||||
Value *Op;
|
||||
if (getValueTypePair(Record, OpNum, NextValueNo, Op) ||
|
||||
OpNum != Record.size())
|
||||
return Error("Invalid RET record");
|
||||
I = new ReturnInst(Op);
|
||||
break;
|
||||
} else {
|
||||
std::vector<Value *> Vs;
|
||||
Value *Op;
|
||||
unsigned OpNum = 0;
|
||||
for (unsigned i = 0; i < Size; ++i) {
|
||||
getValueTypePair(Record, OpNum, NextValueNo, Op);
|
||||
Vs.push_back(Op);
|
||||
}
|
||||
I = new ReturnInst(Vs);
|
||||
break;
|
||||
}
|
||||
}
|
||||
case bitc::FUNC_CODE_INST_BR: { // BR: [bb#, bb#, opval] or [bb#]
|
||||
if (Record.size() != 1 && Record.size() != 3)
|
||||
|
@ -747,15 +747,23 @@ static void WriteInstruction(const Instruction &I, unsigned InstID,
|
||||
case Instruction::GetResult:
|
||||
Code = bitc::FUNC_CODE_INST_GETRESULT;
|
||||
PushValueAndType(I.getOperand(0), InstID, Vals, VE);
|
||||
Vals.push_back(Log2_32(cast<GetResultInst>(I).getIndex())+1);
|
||||
Vals.push_back(cast<GetResultInst>(I).getIndex());
|
||||
break;
|
||||
|
||||
case Instruction::Ret:
|
||||
Code = bitc::FUNC_CODE_INST_RET;
|
||||
if (!I.getNumOperands())
|
||||
AbbrevToUse = FUNCTION_INST_RET_VOID_ABBREV;
|
||||
else if (!PushValueAndType(I.getOperand(0), InstID, Vals, VE))
|
||||
AbbrevToUse = FUNCTION_INST_RET_VAL_ABBREV;
|
||||
case Instruction::Ret:
|
||||
{
|
||||
Code = bitc::FUNC_CODE_INST_RET;
|
||||
unsigned NumOperands = I.getNumOperands();
|
||||
if (NumOperands == 0)
|
||||
AbbrevToUse = FUNCTION_INST_RET_VOID_ABBREV;
|
||||
else if (NumOperands == 1) {
|
||||
if (!PushValueAndType(I.getOperand(0), InstID, Vals, VE))
|
||||
AbbrevToUse = FUNCTION_INST_RET_VAL_ABBREV;
|
||||
} else {
|
||||
for (unsigned i = 0, e = NumOperands; i != e; ++i)
|
||||
PushValueAndType(I.getOperand(i), InstID, Vals, VE);
|
||||
}
|
||||
}
|
||||
break;
|
||||
case Instruction::Br:
|
||||
Code = bitc::FUNC_CODE_INST_BR;
|
||||
|
@ -1,4 +1,4 @@
|
||||
; RUN: llvm-as < %s -disable-output
|
||||
; RUN: llvm-as < %s | opt -verify | llvm-dis | llvm-as -disable-output
|
||||
|
||||
define {i32, i8} @foo(i32 %p) {
|
||||
ret i32 1, i8 2
|
||||
|
Loading…
Reference in New Issue
Block a user