mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-25 13:24:46 +00:00
Push LLVMContexts through the IntegerType APIs.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@78948 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -366,7 +366,7 @@ static GenericValue executeFCMP_OGT(GenericValue Src1, GenericValue Src2,
|
||||
}
|
||||
|
||||
#define IMPLEMENT_UNORDERED(TY, X,Y) \
|
||||
if (TY == Type::FloatTy) { \
|
||||
if (TY == Type::getFloatTy(Ty->getContext())) { \
|
||||
if (X.FloatVal != X.FloatVal || Y.FloatVal != Y.FloatVal) { \
|
||||
Dest.IntVal = APInt(1,true); \
|
||||
return Dest; \
|
||||
@@ -422,7 +422,7 @@ static GenericValue executeFCMP_UGT(GenericValue Src1, GenericValue Src2,
|
||||
static GenericValue executeFCMP_ORD(GenericValue Src1, GenericValue Src2,
|
||||
const Type *Ty) {
|
||||
GenericValue Dest;
|
||||
if (Ty == Type::FloatTy)
|
||||
if (Ty == Type::getFloatTy(Ty->getContext()))
|
||||
Dest.IntVal = APInt(1,(Src1.FloatVal == Src1.FloatVal &&
|
||||
Src2.FloatVal == Src2.FloatVal));
|
||||
else
|
||||
@@ -434,7 +434,7 @@ static GenericValue executeFCMP_ORD(GenericValue Src1, GenericValue Src2,
|
||||
static GenericValue executeFCMP_UNO(GenericValue Src1, GenericValue Src2,
|
||||
const Type *Ty) {
|
||||
GenericValue Dest;
|
||||
if (Ty == Type::FloatTy)
|
||||
if (Ty == Type::getFloatTy(Ty->getContext()))
|
||||
Dest.IntVal = APInt(1,(Src1.FloatVal != Src1.FloatVal ||
|
||||
Src2.FloatVal != Src2.FloatVal));
|
||||
else
|
||||
@@ -602,7 +602,8 @@ void Interpreter::popStackAndReturnValueToCaller (const Type *RetTy,
|
||||
// fill in the return value...
|
||||
ExecutionContext &CallingSF = ECStack.back();
|
||||
if (Instruction *I = CallingSF.Caller.getInstruction()) {
|
||||
if (CallingSF.Caller.getType() != Type::VoidTy) // Save result...
|
||||
// Save result...
|
||||
if (CallingSF.Caller.getType() != Type::getVoidTy(RetTy->getContext()))
|
||||
SetValue(I, Result, CallingSF);
|
||||
if (InvokeInst *II = dyn_cast<InvokeInst> (I))
|
||||
SwitchToNewBasicBlock (II->getNormalDest (), CallingSF);
|
||||
@@ -613,7 +614,7 @@ void Interpreter::popStackAndReturnValueToCaller (const Type *RetTy,
|
||||
|
||||
void Interpreter::visitReturnInst(ReturnInst &I) {
|
||||
ExecutionContext &SF = ECStack.back();
|
||||
const Type *RetTy = Type::VoidTy;
|
||||
const Type *RetTy = Type::getVoidTy(I.getContext());
|
||||
GenericValue Result;
|
||||
|
||||
// Save away the return value... (if we are not 'ret void')
|
||||
@@ -970,7 +971,8 @@ GenericValue Interpreter::executeZExtInst(Value *SrcVal, const Type *DstTy,
|
||||
GenericValue Interpreter::executeFPTruncInst(Value *SrcVal, const Type *DstTy,
|
||||
ExecutionContext &SF) {
|
||||
GenericValue Dest, Src = getOperandValue(SrcVal, SF);
|
||||
assert(SrcVal->getType() == Type::DoubleTy && DstTy == Type::FloatTy &&
|
||||
assert(SrcVal->getType() == Type::getDoubleTy(SrcVal->getContext()) &&
|
||||
DstTy == Type::getFloatTy(SrcVal->getContext()) &&
|
||||
"Invalid FPTrunc instruction");
|
||||
Dest.FloatVal = (float) Src.DoubleVal;
|
||||
return Dest;
|
||||
@@ -979,7 +981,8 @@ GenericValue Interpreter::executeFPTruncInst(Value *SrcVal, const Type *DstTy,
|
||||
GenericValue Interpreter::executeFPExtInst(Value *SrcVal, const Type *DstTy,
|
||||
ExecutionContext &SF) {
|
||||
GenericValue Dest, Src = getOperandValue(SrcVal, SF);
|
||||
assert(SrcVal->getType() == Type::FloatTy && DstTy == Type::DoubleTy &&
|
||||
assert(SrcVal->getType() == Type::getFloatTy(SrcVal->getContext()) &&
|
||||
DstTy == Type::getDoubleTy(SrcVal->getContext()) &&
|
||||
"Invalid FPTrunc instruction");
|
||||
Dest.DoubleVal = (double) Src.FloatVal;
|
||||
return Dest;
|
||||
@@ -1070,22 +1073,22 @@ GenericValue Interpreter::executeBitCastInst(Value *SrcVal, const Type *DstTy,
|
||||
assert(isa<PointerType>(SrcTy) && "Invalid BitCast");
|
||||
Dest.PointerVal = Src.PointerVal;
|
||||
} else if (DstTy->isInteger()) {
|
||||
if (SrcTy == Type::FloatTy) {
|
||||
if (SrcTy == Type::getFloatTy(SrcVal->getContext())) {
|
||||
Dest.IntVal.zext(sizeof(Src.FloatVal) * CHAR_BIT);
|
||||
Dest.IntVal.floatToBits(Src.FloatVal);
|
||||
} else if (SrcTy == Type::DoubleTy) {
|
||||
} else if (SrcTy == Type::getDoubleTy(SrcVal->getContext())) {
|
||||
Dest.IntVal.zext(sizeof(Src.DoubleVal) * CHAR_BIT);
|
||||
Dest.IntVal.doubleToBits(Src.DoubleVal);
|
||||
} else if (SrcTy->isInteger()) {
|
||||
Dest.IntVal = Src.IntVal;
|
||||
} else
|
||||
llvm_unreachable("Invalid BitCast");
|
||||
} else if (DstTy == Type::FloatTy) {
|
||||
} else if (DstTy == Type::getFloatTy(SrcVal->getContext())) {
|
||||
if (SrcTy->isInteger())
|
||||
Dest.FloatVal = Src.IntVal.bitsToFloat();
|
||||
else
|
||||
Dest.FloatVal = Src.FloatVal;
|
||||
} else if (DstTy == Type::DoubleTy) {
|
||||
} else if (DstTy == Type::getDoubleTy(SrcVal->getContext())) {
|
||||
if (SrcTy->isInteger())
|
||||
Dest.DoubleVal = Src.IntVal.bitsToDouble();
|
||||
else
|
||||
|
@@ -418,7 +418,8 @@ GenericValue lle_X_printf(const FunctionType *FT,
|
||||
return GV;
|
||||
}
|
||||
|
||||
static void ByteswapSCANFResults(const char *Fmt, void *Arg0, void *Arg1,
|
||||
static void ByteswapSCANFResults(LLVMContext &C,
|
||||
const char *Fmt, void *Arg0, void *Arg1,
|
||||
void *Arg2, void *Arg3, void *Arg4, void *Arg5,
|
||||
void *Arg6, void *Arg7, void *Arg8) {
|
||||
void *Args[] = { Arg0, Arg1, Arg2, Arg3, Arg4, Arg5, Arg6, Arg7, Arg8, 0 };
|
||||
@@ -458,26 +459,26 @@ static void ByteswapSCANFResults(const char *Fmt, void *Arg0, void *Arg1,
|
||||
case 'i': case 'o': case 'u': case 'x': case 'X': case 'n': case 'p':
|
||||
case 'd':
|
||||
if (Long || LongLong) {
|
||||
Size = 8; Ty = Type::Int64Ty;
|
||||
Size = 8; Ty = Type::getInt64Ty(C);
|
||||
} else if (Half) {
|
||||
Size = 4; Ty = Type::Int16Ty;
|
||||
Size = 4; Ty = Type::getInt16Ty(C);
|
||||
} else {
|
||||
Size = 4; Ty = Type::Int32Ty;
|
||||
Size = 4; Ty = Type::getInt32Ty(C);
|
||||
}
|
||||
break;
|
||||
|
||||
case 'e': case 'g': case 'E':
|
||||
case 'f':
|
||||
if (Long || LongLong) {
|
||||
Size = 8; Ty = Type::DoubleTy;
|
||||
Size = 8; Ty = Type::getDoubleTy(C);
|
||||
} else {
|
||||
Size = 4; Ty = Type::FloatTy;
|
||||
Size = 4; Ty = Type::getFloatTy(C);
|
||||
}
|
||||
break;
|
||||
|
||||
case 's': case 'c': case '[': // No byteswap needed
|
||||
Size = 1;
|
||||
Ty = Type::Int8Ty;
|
||||
Ty = Type::getInt8Ty(C);
|
||||
break;
|
||||
|
||||
default: break;
|
||||
@@ -506,7 +507,8 @@ GenericValue lle_X_sscanf(const FunctionType *FT,
|
||||
GenericValue GV;
|
||||
GV.IntVal = APInt(32, sscanf(Args[0], Args[1], Args[2], Args[3], Args[4],
|
||||
Args[5], Args[6], Args[7], Args[8], Args[9]));
|
||||
ByteswapSCANFResults(Args[1], Args[2], Args[3], Args[4],
|
||||
ByteswapSCANFResults(FT->getContext(),
|
||||
Args[1], Args[2], Args[3], Args[4],
|
||||
Args[5], Args[6], Args[7], Args[8], Args[9], 0);
|
||||
return GV;
|
||||
}
|
||||
@@ -523,7 +525,8 @@ GenericValue lle_X_scanf(const FunctionType *FT,
|
||||
GenericValue GV;
|
||||
GV.IntVal = APInt(32, scanf( Args[0], Args[1], Args[2], Args[3], Args[4],
|
||||
Args[5], Args[6], Args[7], Args[8], Args[9]));
|
||||
ByteswapSCANFResults(Args[0], Args[1], Args[2], Args[3], Args[4],
|
||||
ByteswapSCANFResults(FT->getContext(),
|
||||
Args[0], Args[1], Args[2], Args[3], Args[4],
|
||||
Args[5], Args[6], Args[7], Args[8], Args[9]);
|
||||
return GV;
|
||||
}
|
||||
|
Reference in New Issue
Block a user