mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-14 00:32:55 +00:00
Add new function
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7706 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
0c4dcccd59
commit
b72fb7ef75
@ -34,6 +34,24 @@ std::string getName(MVT::ValueType T) {
|
||||
}
|
||||
}
|
||||
|
||||
std::string getEnumName(MVT::ValueType T) {
|
||||
switch (T) {
|
||||
case MVT::Other: return "Other";
|
||||
case MVT::i1: return "i1";
|
||||
case MVT::i8: return "i8";
|
||||
case MVT::i16: return "i16";
|
||||
case MVT::i32: return "i32";
|
||||
case MVT::i64: return "i64";
|
||||
case MVT::i128: return "i128";
|
||||
case MVT::f32: return "f32";
|
||||
case MVT::f64: return "f64";
|
||||
case MVT::f80: return "f80";
|
||||
case MVT::f128: return "f128";
|
||||
case MVT::isVoid:return "isVoid";
|
||||
default: assert(0 && "ILLEGAL VALUE TYPE!"); return "";
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
std::ostream &operator<<(std::ostream &OS, MVT::ValueType T) {
|
||||
return OS << getName(T);
|
||||
|
@ -22,6 +22,7 @@ MVT::ValueType getValueType(Record *Rec);
|
||||
|
||||
std::ostream &operator<<(std::ostream &OS, MVT::ValueType T);
|
||||
std::string getName(MVT::ValueType T);
|
||||
std::string getEnumName(MVT::ValueType T);
|
||||
|
||||
|
||||
/// CodeGenTarget - This class corresponds to the Target class in the .td files.
|
||||
|
@ -34,6 +34,24 @@ std::string getName(MVT::ValueType T) {
|
||||
}
|
||||
}
|
||||
|
||||
std::string getEnumName(MVT::ValueType T) {
|
||||
switch (T) {
|
||||
case MVT::Other: return "Other";
|
||||
case MVT::i1: return "i1";
|
||||
case MVT::i8: return "i8";
|
||||
case MVT::i16: return "i16";
|
||||
case MVT::i32: return "i32";
|
||||
case MVT::i64: return "i64";
|
||||
case MVT::i128: return "i128";
|
||||
case MVT::f32: return "f32";
|
||||
case MVT::f64: return "f64";
|
||||
case MVT::f80: return "f80";
|
||||
case MVT::f128: return "f128";
|
||||
case MVT::isVoid:return "isVoid";
|
||||
default: assert(0 && "ILLEGAL VALUE TYPE!"); return "";
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
std::ostream &operator<<(std::ostream &OS, MVT::ValueType T) {
|
||||
return OS << getName(T);
|
||||
|
@ -22,6 +22,7 @@ MVT::ValueType getValueType(Record *Rec);
|
||||
|
||||
std::ostream &operator<<(std::ostream &OS, MVT::ValueType T);
|
||||
std::string getName(MVT::ValueType T);
|
||||
std::string getEnumName(MVT::ValueType T);
|
||||
|
||||
|
||||
/// CodeGenTarget - This class corresponds to the Target class in the .td files.
|
||||
|
@ -34,6 +34,24 @@ std::string getName(MVT::ValueType T) {
|
||||
}
|
||||
}
|
||||
|
||||
std::string getEnumName(MVT::ValueType T) {
|
||||
switch (T) {
|
||||
case MVT::Other: return "Other";
|
||||
case MVT::i1: return "i1";
|
||||
case MVT::i8: return "i8";
|
||||
case MVT::i16: return "i16";
|
||||
case MVT::i32: return "i32";
|
||||
case MVT::i64: return "i64";
|
||||
case MVT::i128: return "i128";
|
||||
case MVT::f32: return "f32";
|
||||
case MVT::f64: return "f64";
|
||||
case MVT::f80: return "f80";
|
||||
case MVT::f128: return "f128";
|
||||
case MVT::isVoid:return "isVoid";
|
||||
default: assert(0 && "ILLEGAL VALUE TYPE!"); return "";
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
std::ostream &operator<<(std::ostream &OS, MVT::ValueType T) {
|
||||
return OS << getName(T);
|
||||
|
@ -22,6 +22,7 @@ MVT::ValueType getValueType(Record *Rec);
|
||||
|
||||
std::ostream &operator<<(std::ostream &OS, MVT::ValueType T);
|
||||
std::string getName(MVT::ValueType T);
|
||||
std::string getEnumName(MVT::ValueType T);
|
||||
|
||||
|
||||
/// CodeGenTarget - This class corresponds to the Target class in the .td files.
|
||||
|
Loading…
x
Reference in New Issue
Block a user