mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-01 05:01:59 +01:00
Implement Regression/Assembler/2005-12-21-ZeroInitVector.ll
llvm-svn: 24903
This commit is contained in:
parent
74d01d7e5a
commit
4ca5857a7c
@ -82,7 +82,7 @@ static inline void ThrowException(const std::string &message,
|
||||
struct ValID {
|
||||
enum {
|
||||
NumberVal, NameVal, ConstSIntVal, ConstUIntVal, ConstFPVal, ConstNullVal,
|
||||
ConstUndefVal, ConstantVal,
|
||||
ConstUndefVal, ConstZeroVal, ConstantVal,
|
||||
} Type;
|
||||
|
||||
union {
|
||||
@ -122,6 +122,10 @@ struct ValID {
|
||||
ValID D; D.Type = ConstUndefVal; return D;
|
||||
}
|
||||
|
||||
static ValID createZeroInit() {
|
||||
ValID D; D.Type = ConstZeroVal; return D;
|
||||
}
|
||||
|
||||
static ValID create(Constant *Val) {
|
||||
ValID D; D.Type = ConstantVal; D.ConstantValue = Val; return D;
|
||||
}
|
||||
@ -145,6 +149,7 @@ struct ValID {
|
||||
case ConstFPVal : return ftostr(ConstPoolFP);
|
||||
case ConstNullVal : return "null";
|
||||
case ConstUndefVal : return "undef";
|
||||
case ConstZeroVal : return "zeroinitializer";
|
||||
case ConstUIntVal :
|
||||
case ConstSIntVal : return std::string("%") + itostr(ConstPool64);
|
||||
case ConstantVal:
|
||||
@ -168,6 +173,7 @@ struct ValID {
|
||||
case ConstFPVal: return ConstPoolFP < V.ConstPoolFP;
|
||||
case ConstNullVal: return false;
|
||||
case ConstUndefVal: return false;
|
||||
case ConstZeroVal: return false;
|
||||
case ConstantVal: return ConstantValue < V.ConstantValue;
|
||||
default: assert(0 && "Unknown value type!"); return false;
|
||||
}
|
||||
|
@ -303,6 +303,9 @@ static Value *getValNonImprovising(const Type *Ty, const ValID &D) {
|
||||
case ValID::ConstUndefVal: // Is it an undef value?
|
||||
return UndefValue::get(Ty);
|
||||
|
||||
case ValID::ConstZeroVal: // Is it a zero value?
|
||||
return Constant::getNullValue(Ty);
|
||||
|
||||
case ValID::ConstantVal: // Fully resolved constant?
|
||||
if (D.ConstantValue->getType() != Ty)
|
||||
ThrowException("Constant expression type different from required type!");
|
||||
@ -1816,6 +1819,9 @@ ConstValueRef : ESINT64VAL { // A reference to a direct constant
|
||||
| UNDEF {
|
||||
$$ = ValID::createUndef();
|
||||
}
|
||||
| ZEROINITIALIZER { // A vector zero constant.
|
||||
$$ = ValID::createZeroInit();
|
||||
}
|
||||
| '<' ConstVector '>' { // Nonempty unsized packed vector
|
||||
const Type *ETy = (*$2)[0]->getType();
|
||||
int NumElements = $2->size();
|
||||
|
Loading…
x
Reference in New Issue
Block a user