mirror of
https://github.com/RPCS3/llvm.git
synced 2025-01-31 07:43:37 +00:00
[opaque pointer type] Bitcode support for explicit type parameter on GEP.
Like r230414, add bitcode support including backwards compatibility, for an explicit type parameter to GEP. At the suggestion of Duncan I tried coalescing the two older bitcodes into a single new bitcode, though I did hit a wrinkle: I couldn't figure out how to create an explicit abbreviation for a record with a variable number of arguments (the indicies to the gep). This means the discriminator between inbounds and non-inbounds gep is a full variable-length field I believe? Is my understanding correct? Is there a way to create such an abbreviation? Should I just use two bitcodes as before? Reviewers: dexonsmith Differential Revision: http://reviews.llvm.org/D7736 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@230415 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
5e2e6f2855
commit
6606ad944b
@ -293,7 +293,7 @@ namespace bitc {
|
||||
|
||||
FUNC_CODE_INST_BINOP = 2, // BINOP: [opcode, ty, opval, opval]
|
||||
FUNC_CODE_INST_CAST = 3, // CAST: [opcode, ty, opty, opval]
|
||||
FUNC_CODE_INST_GEP = 4, // GEP: [n x operands]
|
||||
FUNC_CODE_INST_GEP_OLD = 4, // GEP: [n x operands]
|
||||
FUNC_CODE_INST_SELECT = 5, // SELECT: [ty, opval, opval, opval]
|
||||
FUNC_CODE_INST_EXTRACTELT = 6, // EXTRACTELT: [opty, opval, opval]
|
||||
FUNC_CODE_INST_INSERTELT = 7, // INSERTELT: [ty, opval, opval, opval]
|
||||
@ -327,7 +327,7 @@ namespace bitc {
|
||||
FUNC_CODE_INST_CMP2 = 28, // CMP2: [opty, opval, opval, pred]
|
||||
// new select on i1 or [N x i1]
|
||||
FUNC_CODE_INST_VSELECT = 29, // VSELECT: [ty,opval,opval,predty,pred]
|
||||
FUNC_CODE_INST_INBOUNDS_GEP= 30, // INBOUNDS_GEP: [n x operands]
|
||||
FUNC_CODE_INST_INBOUNDS_GEP_OLD = 30, // INBOUNDS_GEP: [n x operands]
|
||||
FUNC_CODE_INST_INDIRECTBR = 31, // INDIRECTBR: [opty, op0, op1, ...]
|
||||
// 32 is unused.
|
||||
FUNC_CODE_DEBUG_LOC_AGAIN = 33, // DEBUG_LOC_AGAIN
|
||||
@ -345,8 +345,9 @@ namespace bitc {
|
||||
FUNC_CODE_INST_LANDINGPAD = 40, // LANDINGPAD: [ty,val,val,num,id0,val0...]
|
||||
FUNC_CODE_INST_LOADATOMIC = 41, // LOAD: [opty, op, align, vol,
|
||||
// ordering, synchscope]
|
||||
FUNC_CODE_INST_STOREATOMIC = 42 // STORE: [ptrty,ptr,val, align, vol
|
||||
FUNC_CODE_INST_STOREATOMIC = 42, // STORE: [ptrty,ptr,val, align, vol
|
||||
// ordering, synchscope]
|
||||
FUNC_CODE_INST_GEP = 43, // GEP: [inbounds, n x operands]
|
||||
};
|
||||
|
||||
enum UseListCodes {
|
||||
|
@ -845,6 +845,13 @@ public:
|
||||
return cast<SequentialType>(Instruction::getType());
|
||||
}
|
||||
|
||||
Type *getSourceElementType() const {
|
||||
SequentialType *Ty = cast<SequentialType>(getPointerOperandType());
|
||||
if (VectorType *VTy = dyn_cast<VectorType>(Ty))
|
||||
Ty = cast<SequentialType>(VTy->getElementType());
|
||||
return Ty->getElementType();
|
||||
}
|
||||
|
||||
/// \brief Returns the address space of this instruction's pointer type.
|
||||
unsigned getAddressSpace() const {
|
||||
// Note that this is always the same as the pointer operand's address space
|
||||
|
@ -3062,9 +3062,22 @@ std::error_code BitcodeReader::ParseFunctionBody(Function *F) {
|
||||
InstructionList.push_back(I);
|
||||
break;
|
||||
}
|
||||
case bitc::FUNC_CODE_INST_INBOUNDS_GEP:
|
||||
case bitc::FUNC_CODE_INST_GEP: { // GEP: [n x operands]
|
||||
case bitc::FUNC_CODE_INST_INBOUNDS_GEP_OLD:
|
||||
case bitc::FUNC_CODE_INST_GEP_OLD:
|
||||
case bitc::FUNC_CODE_INST_GEP: { // GEP: type, [n x operands]
|
||||
unsigned OpNum = 0;
|
||||
|
||||
Type *Ty;
|
||||
bool InBounds;
|
||||
|
||||
if (BitCode == bitc::FUNC_CODE_INST_GEP) {
|
||||
InBounds = Record[OpNum++];
|
||||
Ty = getTypeByID(Record[OpNum++]);
|
||||
} else {
|
||||
InBounds = BitCode == bitc::FUNC_CODE_INST_INBOUNDS_GEP_OLD;
|
||||
Ty = nullptr;
|
||||
}
|
||||
|
||||
Value *BasePtr;
|
||||
if (getValueTypePair(Record, OpNum, NextValueNo, BasePtr))
|
||||
return Error("Invalid record");
|
||||
@ -3078,8 +3091,9 @@ std::error_code BitcodeReader::ParseFunctionBody(Function *F) {
|
||||
}
|
||||
|
||||
I = GetElementPtrInst::Create(BasePtr, GEPIdx);
|
||||
assert(!Ty || Ty == cast<GetElementPtrInst>(I)->getSourceElementType());
|
||||
InstructionList.push_back(I);
|
||||
if (BitCode == bitc::FUNC_CODE_INST_INBOUNDS_GEP)
|
||||
if (InBounds)
|
||||
cast<GetElementPtrInst>(I)->setIsInBounds(true);
|
||||
break;
|
||||
}
|
||||
|
@ -56,7 +56,8 @@ enum {
|
||||
FUNCTION_INST_CAST_ABBREV,
|
||||
FUNCTION_INST_RET_VOID_ABBREV,
|
||||
FUNCTION_INST_RET_VAL_ABBREV,
|
||||
FUNCTION_INST_UNREACHABLE_ABBREV
|
||||
FUNCTION_INST_UNREACHABLE_ABBREV,
|
||||
FUNCTION_INST_GEP_ABBREV,
|
||||
};
|
||||
|
||||
static unsigned GetEncodedCastOpcode(unsigned Opcode) {
|
||||
@ -1675,13 +1676,16 @@ static void WriteInstruction(const Instruction &I, unsigned InstID,
|
||||
}
|
||||
break;
|
||||
|
||||
case Instruction::GetElementPtr:
|
||||
case Instruction::GetElementPtr: {
|
||||
Code = bitc::FUNC_CODE_INST_GEP;
|
||||
if (cast<GEPOperator>(&I)->isInBounds())
|
||||
Code = bitc::FUNC_CODE_INST_INBOUNDS_GEP;
|
||||
AbbrevToUse = FUNCTION_INST_GEP_ABBREV;
|
||||
auto &GEPInst = cast<GetElementPtrInst>(I);
|
||||
Vals.push_back(GEPInst.isInBounds());
|
||||
Vals.push_back(VE.getTypeID(GEPInst.getSourceElementType()));
|
||||
for (unsigned i = 0, e = I.getNumOperands(); i != e; ++i)
|
||||
PushValueAndType(I.getOperand(i), InstID, Vals, VE);
|
||||
break;
|
||||
}
|
||||
case Instruction::ExtractValue: {
|
||||
Code = bitc::FUNC_CODE_INST_EXTRACTVAL;
|
||||
PushValueAndType(I.getOperand(0), InstID, Vals, VE);
|
||||
@ -2287,6 +2291,18 @@ static void WriteBlockInfo(const ValueEnumerator &VE, BitstreamWriter &Stream) {
|
||||
Abbv) != FUNCTION_INST_UNREACHABLE_ABBREV)
|
||||
llvm_unreachable("Unexpected abbrev ordering!");
|
||||
}
|
||||
{
|
||||
BitCodeAbbrev *Abbv = new BitCodeAbbrev();
|
||||
Abbv->Add(BitCodeAbbrevOp(bitc::FUNC_CODE_INST_GEP));
|
||||
Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1));
|
||||
Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, // dest ty
|
||||
Log2_32_Ceil(VE.getTypes().size() + 1)));
|
||||
Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Array));
|
||||
Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 6));
|
||||
if (Stream.EmitBlockInfoAbbrev(bitc::FUNCTION_BLOCK_ID, Abbv) !=
|
||||
FUNCTION_INST_GEP_ABBREV)
|
||||
llvm_unreachable("Unexpected abbrev ordering!");
|
||||
}
|
||||
|
||||
Stream.ExitBlock();
|
||||
}
|
||||
|
@ -35,9 +35,9 @@ define double @test_float_binops(i32 %a) nounwind {
|
||||
|
||||
|
||||
; CHECK: FUNCTION_BLOCK
|
||||
; skip checking operands of INST_INBOUNDS_GEP since that depends on ordering
|
||||
; skip checking operands of INST_GEP since that depends on ordering
|
||||
; between literals and the formal parameters.
|
||||
; CHECK: INST_INBOUNDS_GEP {{.*}}
|
||||
; CHECK: INST_GEP {{.*}}
|
||||
; CHECK: INST_LOAD {{.*}}op0=1 {{.*}}
|
||||
; CHECK: INST_CMP2 op0=1 {{.*}}
|
||||
; CHECK: INST_RET {{.*}}op0=1
|
||||
|
@ -222,8 +222,10 @@ static const char *GetCodeName(unsigned CodeID, unsigned BlockID,
|
||||
|
||||
case bitc::FUNC_CODE_INST_BINOP: return "INST_BINOP";
|
||||
case bitc::FUNC_CODE_INST_CAST: return "INST_CAST";
|
||||
case bitc::FUNC_CODE_INST_GEP: return "INST_GEP";
|
||||
case bitc::FUNC_CODE_INST_INBOUNDS_GEP: return "INST_INBOUNDS_GEP";
|
||||
case bitc::FUNC_CODE_INST_GEP_OLD:
|
||||
return "INST_GEP_OLD";
|
||||
case bitc::FUNC_CODE_INST_INBOUNDS_GEP_OLD:
|
||||
return "INST_INBOUNDS_GEP_OLD";
|
||||
case bitc::FUNC_CODE_INST_SELECT: return "INST_SELECT";
|
||||
case bitc::FUNC_CODE_INST_EXTRACTELT: return "INST_EXTRACTELT";
|
||||
case bitc::FUNC_CODE_INST_INSERTELT: return "INST_INSERTELT";
|
||||
@ -248,6 +250,8 @@ static const char *GetCodeName(unsigned CodeID, unsigned BlockID,
|
||||
case bitc::FUNC_CODE_DEBUG_LOC_AGAIN: return "DEBUG_LOC_AGAIN";
|
||||
case bitc::FUNC_CODE_INST_CALL: return "INST_CALL";
|
||||
case bitc::FUNC_CODE_DEBUG_LOC: return "DEBUG_LOC";
|
||||
case bitc::FUNC_CODE_INST_GEP:
|
||||
return "INST_GEP";
|
||||
}
|
||||
case bitc::VALUE_SYMTAB_BLOCK_ID:
|
||||
switch (CodeID) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user