mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-15 23:31:37 +00:00
Fix PR296: [execution engines] Unhandled cast constant expression
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12435 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
85ebd541fa
commit
7d1bd336ab
@ -179,19 +179,30 @@ GenericValue ExecutionEngine::getConstantValue(const Constant *C) {
|
|||||||
// automatically fold, just the ones involving pointers won't.
|
// automatically fold, just the ones involving pointers won't.
|
||||||
//
|
//
|
||||||
Constant *Op = CE->getOperand(0);
|
Constant *Op = CE->getOperand(0);
|
||||||
|
GenericValue GV = getConstantValue(Op);
|
||||||
|
|
||||||
// Handle cast of pointer to pointer...
|
// Handle cast of pointer to pointer...
|
||||||
if (Op->getType()->getPrimitiveID() == C->getType()->getPrimitiveID())
|
if (Op->getType()->getPrimitiveID() == C->getType()->getPrimitiveID())
|
||||||
return getConstantValue(Op);
|
return GV;
|
||||||
|
|
||||||
// Handle a cast of pointer to any integral type...
|
// Handle a cast of pointer to any integral type...
|
||||||
if (isa<PointerType>(Op->getType()) && C->getType()->isIntegral())
|
if (isa<PointerType>(Op->getType()) && C->getType()->isIntegral())
|
||||||
return getConstantValue(Op);
|
return GV;
|
||||||
|
|
||||||
// Handle cast of long to pointer...
|
// Handle cast of integer to a pointer...
|
||||||
if (isa<PointerType>(C->getType()) && (Op->getType() == Type::LongTy ||
|
if (isa<PointerType>(C->getType()) && Op->getType()->isIntegral())
|
||||||
Op->getType() == Type::ULongTy))
|
switch (Op->getType()->getPrimitiveID()) {
|
||||||
return getConstantValue(Op);
|
case Type::BoolTyID: return PTOGV((void*)(uintptr_t)GV.BoolVal);
|
||||||
|
case Type::SByteTyID: return PTOGV((void*)( intptr_t)GV.SByteVal);
|
||||||
|
case Type::UByteTyID: return PTOGV((void*)(uintptr_t)GV.UByteVal);
|
||||||
|
case Type::ShortTyID: return PTOGV((void*)( intptr_t)GV.ShortVal);
|
||||||
|
case Type::UShortTyID: return PTOGV((void*)(uintptr_t)GV.UShortVal);
|
||||||
|
case Type::IntTyID: return PTOGV((void*)( intptr_t)GV.IntVal);
|
||||||
|
case Type::UIntTyID: return PTOGV((void*)(uintptr_t)GV.UIntVal);
|
||||||
|
case Type::LongTyID: return PTOGV((void*)( intptr_t)GV.LongVal);
|
||||||
|
case Type::ULongTyID: return PTOGV((void*)(uintptr_t)GV.ULongVal);
|
||||||
|
default: assert(0 && "Unknown integral type!");
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user