• Home
  • Raw
  • Download

Lines Matching refs:Dest

122   bool parseRegisterOperand(MachineOperand &Dest,
124 bool parseImmediateOperand(MachineOperand &Dest);
128 bool parseTypedImmediateOperand(MachineOperand &Dest);
129 bool parseFPImmediateOperand(MachineOperand &Dest);
131 bool parseMBBOperand(MachineOperand &Dest);
133 bool parseStackObjectOperand(MachineOperand &Dest);
135 bool parseFixedStackObjectOperand(MachineOperand &Dest);
137 bool parseGlobalAddressOperand(MachineOperand &Dest);
138 bool parseConstantPoolIndexOperand(MachineOperand &Dest);
139 bool parseJumpTableIndexOperand(MachineOperand &Dest);
140 bool parseExternalSymbolOperand(MachineOperand &Dest);
142 bool parseMetadataOperand(MachineOperand &Dest);
145 bool parseCFIOperand(MachineOperand &Dest);
147 bool parseBlockAddressOperand(MachineOperand &Dest);
148 bool parseTargetIndexOperand(MachineOperand &Dest);
149 bool parseLiveoutRegisterMaskOperand(MachineOperand &Dest);
150 bool parseMachineOperand(MachineOperand &Dest,
152 bool parseMachineOperandAndTargetFlags(MachineOperand &Dest,
160 bool parseMachinePointerInfo(MachinePointerInfo &Dest);
161 bool parseMachineMemoryOperand(MachineMemOperand *&Dest);
916 bool MIParser::parseRegisterOperand(MachineOperand &Dest, in parseRegisterOperand() argument
941 Dest = MachineOperand::CreateReg( in parseRegisterOperand()
949 bool MIParser::parseImmediateOperand(MachineOperand &Dest) { in parseImmediateOperand() argument
954 Dest = MachineOperand::CreateImm(Int.getExtValue()); in parseImmediateOperand()
977 bool MIParser::parseTypedImmediateOperand(MachineOperand &Dest) { in parseTypedImmediateOperand() argument
986 Dest = MachineOperand::CreateCImm(cast<ConstantInt>(C)); in parseTypedImmediateOperand()
990 bool MIParser::parseFPImmediateOperand(MachineOperand &Dest) { in parseFPImmediateOperand() argument
998 Dest = MachineOperand::CreateFPImm(cast<ConstantFP>(C)); in parseFPImmediateOperand()
1029 bool MIParser::parseMBBOperand(MachineOperand &Dest) { in parseMBBOperand() argument
1033 Dest = MachineOperand::CreateMBB(MBB); in parseMBBOperand()
1059 bool MIParser::parseStackObjectOperand(MachineOperand &Dest) { in parseStackObjectOperand() argument
1063 Dest = MachineOperand::CreateFI(FI); in parseStackObjectOperand()
1081 bool MIParser::parseFixedStackObjectOperand(MachineOperand &Dest) { in parseFixedStackObjectOperand() argument
1085 Dest = MachineOperand::CreateFI(FI); in parseFixedStackObjectOperand()
1115 bool MIParser::parseGlobalAddressOperand(MachineOperand &Dest) { in parseGlobalAddressOperand() argument
1120 Dest = MachineOperand::CreateGA(GV, /*Offset=*/0); in parseGlobalAddressOperand()
1121 if (parseOperandsOffset(Dest)) in parseGlobalAddressOperand()
1126 bool MIParser::parseConstantPoolIndexOperand(MachineOperand &Dest) { in parseConstantPoolIndexOperand() argument
1135 Dest = MachineOperand::CreateCPI(ID, /*Offset=*/0); in parseConstantPoolIndexOperand()
1136 if (parseOperandsOffset(Dest)) in parseConstantPoolIndexOperand()
1141 bool MIParser::parseJumpTableIndexOperand(MachineOperand &Dest) { in parseJumpTableIndexOperand() argument
1150 Dest = MachineOperand::CreateJTI(JumpTableEntryInfo->second); in parseJumpTableIndexOperand()
1154 bool MIParser::parseExternalSymbolOperand(MachineOperand &Dest) { in parseExternalSymbolOperand() argument
1158 Dest = MachineOperand::CreateES(Symbol); in parseExternalSymbolOperand()
1159 if (parseOperandsOffset(Dest)) in parseExternalSymbolOperand()
1181 bool MIParser::parseMetadataOperand(MachineOperand &Dest) { in parseMetadataOperand() argument
1185 Dest = MachineOperand::CreateMetadata(Node); in parseMetadataOperand()
1215 bool MIParser::parseCFIOperand(MachineOperand &Dest) { in parseCFIOperand() argument
1261 Dest = MachineOperand::CreateCFIIndex(CFIIndex); in parseCFIOperand()
1290 bool MIParser::parseBlockAddressOperand(MachineOperand &Dest) { in parseBlockAddressOperand() argument
1315 Dest = MachineOperand::CreateBA(BlockAddress::get(F, BB), /*Offset=*/0); in parseBlockAddressOperand()
1316 if (parseOperandsOffset(Dest)) in parseBlockAddressOperand()
1321 bool MIParser::parseTargetIndexOperand(MachineOperand &Dest) { in parseTargetIndexOperand() argument
1334 Dest = MachineOperand::CreateTargetIndex(unsigned(Index), /*Offset=*/0); in parseTargetIndexOperand()
1335 if (parseOperandsOffset(Dest)) in parseTargetIndexOperand()
1340 bool MIParser::parseLiveoutRegisterMaskOperand(MachineOperand &Dest) { in parseLiveoutRegisterMaskOperand() argument
1363 Dest = MachineOperand::CreateRegLiveOut(Mask); in parseLiveoutRegisterMaskOperand()
1367 bool MIParser::parseMachineOperand(MachineOperand &Dest, in parseMachineOperand() argument
1382 return parseRegisterOperand(Dest, TiedDefIdx); in parseMachineOperand()
1384 return parseImmediateOperand(Dest); in parseMachineOperand()
1386 return parseTypedImmediateOperand(Dest); in parseMachineOperand()
1393 return parseFPImmediateOperand(Dest); in parseMachineOperand()
1395 return parseMBBOperand(Dest); in parseMachineOperand()
1397 return parseStackObjectOperand(Dest); in parseMachineOperand()
1399 return parseFixedStackObjectOperand(Dest); in parseMachineOperand()
1402 return parseGlobalAddressOperand(Dest); in parseMachineOperand()
1404 return parseConstantPoolIndexOperand(Dest); in parseMachineOperand()
1406 return parseJumpTableIndexOperand(Dest); in parseMachineOperand()
1408 return parseExternalSymbolOperand(Dest); in parseMachineOperand()
1410 return parseMetadataOperand(Dest); in parseMachineOperand()
1416 return parseCFIOperand(Dest); in parseMachineOperand()
1418 return parseBlockAddressOperand(Dest); in parseMachineOperand()
1420 return parseTargetIndexOperand(Dest); in parseMachineOperand()
1422 return parseLiveoutRegisterMaskOperand(Dest); in parseMachineOperand()
1427 Dest = MachineOperand::CreateRegMask(RegMask); in parseMachineOperand()
1440 MachineOperand &Dest, Optional<unsigned> &TiedDefIdx) { in parseMachineOperandAndTargetFlags() argument
1472 if (parseMachineOperand(Dest, TiedDefIdx)) in parseMachineOperandAndTargetFlags()
1476 if (Dest.isReg()) in parseMachineOperandAndTargetFlags()
1478 Dest.setTargetFlags(TF); in parseMachineOperandAndTargetFlags()
1636 bool MIParser::parseMachinePointerInfo(MachinePointerInfo &Dest) { in parseMachinePointerInfo() argument
1646 Dest = MachinePointerInfo(PSV, Offset); in parseMachinePointerInfo()
1663 Dest = MachinePointerInfo(V, Offset); in parseMachinePointerInfo()
1667 bool MIParser::parseMachineMemoryOperand(MachineMemOperand *&Dest) { in parseMachineMemoryOperand() argument
1736 Dest = in parseMachineMemoryOperand()