namespace llvm {
class Record;
class RecordKeeper;
+ class CodeGenTarget;
struct CodeGenIntrinsic {
Record *TheDef; // The actual record defining this instruction.
NoMem, ReadArgMem, ReadMem, WriteArgMem, WriteMem
} ModRef;
- CodeGenIntrinsic(Record *R);
+ CodeGenIntrinsic(Record *R, CodeGenTarget &CGT);
};
/// LoadIntrinsics - Read all of the intrinsics defined in the specified
/// getValueType - Return the MCV::ValueType that the specified TableGen record
/// corresponds to.
-MVT::ValueType llvm::getValueType(Record *Rec) {
- return (MVT::ValueType)Rec->getValueAsInt("Value");
+MVT::ValueType llvm::getValueType(Record *Rec, const CodeGenTarget *CGT) {
+ MVT::ValueType VT = (MVT::ValueType)Rec->getValueAsInt("Value");
+ if (VT == MVT::iPTR) {
+ assert(CGT && "Use a pointer type in a place that isn't supported yet!");
+ VT = CGT->getPointerType();
+ }
+ return VT;
}
std::string llvm::getName(MVT::ValueType T) {
std::vector<CodeGenIntrinsic> llvm::LoadIntrinsics(const RecordKeeper &RC) {
std::vector<Record*> I = RC.getAllDerivedDefinitions("Intrinsic");
- return std::vector<CodeGenIntrinsic>(I.begin(), I.end());
+
+ std::vector<CodeGenIntrinsic> Result;
+ CodeGenTarget CGT;
+ for (unsigned i = 0, e = I.size(); i != e; ++i)
+ Result.push_back(CodeGenIntrinsic(I[i], CGT));
+ return Result;
}
-CodeGenIntrinsic::CodeGenIntrinsic(Record *R) {
+CodeGenIntrinsic::CodeGenIntrinsic(Record *R, CodeGenTarget &CGT) {
TheDef = R;
std::string DefName = R->getName();
ModRef = WriteMem;
assert(TyEl->isSubClassOf("LLVMType") && "Expected a type!");
ArgTypes.push_back(TyEl->getValueAsString("TypeVal"));
- ArgVTs.push_back(getValueType(TyEl->getValueAsDef("VT")));
+ ArgVTs.push_back(getValueType(TyEl->getValueAsDef("VT"), &CGT));
ArgTypeDefs.push_back(TyEl);
}
if (ArgTypes.size() == 0)
class Record;
class RecordKeeper;
struct CodeGenRegister;
+class CodeGenTarget;
/// getValueType - Return the MVT::ValueType that the specified TableGen record
/// corresponds to.
-MVT::ValueType getValueType(Record *Rec);
+MVT::ValueType getValueType(Record *Rec, const CodeGenTarget *CGT = 0);
std::ostream &operator<<(std::ostream &OS, MVT::ValueType T);
std::string getName(MVT::ValueType T);