Home | History | Annotate | Download | only in TableGen

Lines Matching defs:Records

142   RecordKeeper &Records;
147 NeonEmitter(RecordKeeper &R) : Records(R) {
1253 /// run - Read the records in arm_neon.td and output arm_neon.h. arm_neon.h
1347 std::vector<Record*> RV = Records.getAllDerivedDefinitions("Inst");
1352 // sorts the records into alphabetical order so that the "_lane" variants
1354 emitIntrinsic(OS, Records.getDef("VMOVL"));
1355 emitIntrinsic(OS, Records.getDef("VMULL"));
1356 emitIntrinsic(OS, Records.getDef("VABD"));
1437 std::vector<Record*> RV = Records.getAllDerivedDefinitions("Inst");
1736 std::vector<Record*> RV = Records.getAllDerivedDefinitions("Inst");
1772 void EmitNeon(RecordKeeper &Records, raw_ostream &OS) {
1773 NeonEmitter(Records).run(OS);
1775 void EmitNeonSema(RecordKeeper &Records, raw_ostream &OS) {
1776 NeonEmitter(Records).runHeader(OS);
1778 void EmitNeonTest(RecordKeeper &Records, raw_ostream &OS) {
1779 NeonEmitter(Records).runTests(OS);