Lines Matching refs:Dest

451   bool parseRegisterOperand(MachineOperand &Dest,
453 bool parseImmediateOperand(MachineOperand &Dest);
458 bool parseTypedImmediateOperand(MachineOperand &Dest);
459 bool parseFPImmediateOperand(MachineOperand &Dest);
461 bool parseMBBOperand(MachineOperand &Dest);
463 bool parseStackObjectOperand(MachineOperand &Dest);
465 bool parseFixedStackObjectOperand(MachineOperand &Dest);
467 bool parseGlobalAddressOperand(MachineOperand &Dest);
468 bool parseConstantPoolIndexOperand(MachineOperand &Dest);
469 bool parseSubRegisterIndexOperand(MachineOperand &Dest);
470 bool parseJumpTableIndexOperand(MachineOperand &Dest);
471 bool parseExternalSymbolOperand(MachineOperand &Dest);
472 bool parseMCSymbolOperand(MachineOperand &Dest);
476 bool parseMetadataOperand(MachineOperand &Dest);
481 bool parseCFIOperand(MachineOperand &Dest);
483 bool parseBlockAddressOperand(MachineOperand &Dest);
484 bool parseIntrinsicOperand(MachineOperand &Dest);
485 bool parsePredicateOperand(MachineOperand &Dest);
486 bool parseShuffleMaskOperand(MachineOperand &Dest);
487 bool parseTargetIndexOperand(MachineOperand &Dest);
488 bool parseCustomRegisterMaskOperand(MachineOperand &Dest);
489 bool parseLiveoutRegisterMaskOperand(MachineOperand &Dest);
491 MachineOperand &Dest,
495 MachineOperand &Dest,
505 bool parseMachinePointerInfo(MachinePointerInfo &Dest);
508 bool parseMachineMemoryOperand(MachineMemOperand *&Dest);
513 MachineOperand &Dest, const MIRFormatter &MF);
1650 bool MIParser::parseRegisterOperand(MachineOperand &Dest, in parseRegisterOperand() argument
1735 Dest = MachineOperand::CreateReg( in parseRegisterOperand()
1744 bool MIParser::parseImmediateOperand(MachineOperand &Dest) { in parseImmediateOperand() argument
1749 Dest = MachineOperand::CreateImm(Int.getExtValue()); in parseImmediateOperand()
1756 MachineOperand &Dest, in parseTargetImmMnemonic() argument
1782 Dest = MachineOperand::CreateImm(Val); in parseTargetImmMnemonic()
1903 bool MIParser::parseTypedImmediateOperand(MachineOperand &Dest) { in parseTypedImmediateOperand() argument
1924 Dest = MachineOperand::CreateCImm(cast<ConstantInt>(C)); in parseTypedImmediateOperand()
1928 bool MIParser::parseFPImmediateOperand(MachineOperand &Dest) { in parseFPImmediateOperand() argument
1937 Dest = MachineOperand::CreateFPImm(cast<ConstantFP>(C)); in parseFPImmediateOperand()
2006 bool MIParser::parseMBBOperand(MachineOperand &Dest) { in parseMBBOperand() argument
2010 Dest = MachineOperand::CreateMBB(MBB); in parseMBBOperand()
2036 bool MIParser::parseStackObjectOperand(MachineOperand &Dest) { in parseStackObjectOperand() argument
2040 Dest = MachineOperand::CreateFI(FI); in parseStackObjectOperand()
2058 bool MIParser::parseFixedStackObjectOperand(MachineOperand &Dest) { in parseFixedStackObjectOperand() argument
2062 Dest = MachineOperand::CreateFI(FI); in parseFixedStackObjectOperand()
2102 bool MIParser::parseGlobalAddressOperand(MachineOperand &Dest) { in parseGlobalAddressOperand() argument
2107 Dest = MachineOperand::CreateGA(GV, /*Offset=*/0); in parseGlobalAddressOperand()
2108 if (parseOperandsOffset(Dest)) in parseGlobalAddressOperand()
2113 bool MIParser::parseConstantPoolIndexOperand(MachineOperand &Dest) { in parseConstantPoolIndexOperand() argument
2122 Dest = MachineOperand::CreateCPI(ID, /*Offset=*/0); in parseConstantPoolIndexOperand()
2123 if (parseOperandsOffset(Dest)) in parseConstantPoolIndexOperand()
2128 bool MIParser::parseJumpTableIndexOperand(MachineOperand &Dest) { in parseJumpTableIndexOperand() argument
2137 Dest = MachineOperand::CreateJTI(JumpTableEntryInfo->second); in parseJumpTableIndexOperand()
2141 bool MIParser::parseExternalSymbolOperand(MachineOperand &Dest) { in parseExternalSymbolOperand() argument
2145 Dest = MachineOperand::CreateES(Symbol); in parseExternalSymbolOperand()
2146 if (parseOperandsOffset(Dest)) in parseExternalSymbolOperand()
2151 bool MIParser::parseMCSymbolOperand(MachineOperand &Dest) { in parseMCSymbolOperand() argument
2155 Dest = MachineOperand::CreateMCSymbol(Symbol); in parseMCSymbolOperand()
2156 if (parseOperandsOffset(Dest)) in parseMCSymbolOperand()
2161 bool MIParser::parseSubRegisterIndexOperand(MachineOperand &Dest) { in parseSubRegisterIndexOperand() argument
2168 Dest = MachineOperand::CreateImm(SubRegIndex); in parseSubRegisterIndexOperand()
2342 bool MIParser::parseMetadataOperand(MachineOperand &Dest) { in parseMetadataOperand() argument
2351 Dest = MachineOperand::CreateMetadata(Node); in parseMetadataOperand()
2406 bool MIParser::parseCFIOperand(MachineOperand &Dest) { in parseCFIOperand() argument
2509 Dest = MachineOperand::CreateCFIIndex(CFIIndex); in parseCFIOperand()
2538 bool MIParser::parseBlockAddressOperand(MachineOperand &Dest) { in parseBlockAddressOperand() argument
2563 Dest = MachineOperand::CreateBA(BlockAddress::get(F, BB), /*Offset=*/0); in parseBlockAddressOperand()
2564 if (parseOperandsOffset(Dest)) in parseBlockAddressOperand()
2569 bool MIParser::parseIntrinsicOperand(MachineOperand &Dest) { in parseIntrinsicOperand() argument
2593 Dest = MachineOperand::CreateIntrinsicID(ID); in parseIntrinsicOperand()
2598 bool MIParser::parsePredicateOperand(MachineOperand &Dest) { in parsePredicateOperand() argument
2649 Dest = MachineOperand::CreatePredicate(Pred); in parsePredicateOperand()
2656 bool MIParser::parseShuffleMaskOperand(MachineOperand &Dest) { in parseShuffleMaskOperand() argument
2680 Dest = MachineOperand::CreateShuffleMask(MaskAlloc); in parseShuffleMaskOperand()
2684 bool MIParser::parseTargetIndexOperand(MachineOperand &Dest) { in parseTargetIndexOperand() argument
2697 Dest = MachineOperand::CreateTargetIndex(unsigned(Index), /*Offset=*/0); in parseTargetIndexOperand()
2698 if (parseOperandsOffset(Dest)) in parseTargetIndexOperand()
2703 bool MIParser::parseCustomRegisterMaskOperand(MachineOperand &Dest) { in parseCustomRegisterMaskOperand() argument
2726 Dest = MachineOperand::CreateRegMask(Mask); in parseCustomRegisterMaskOperand()
2730 bool MIParser::parseLiveoutRegisterMaskOperand(MachineOperand &Dest) { in parseLiveoutRegisterMaskOperand() argument
2751 Dest = MachineOperand::CreateRegLiveOut(Mask); in parseLiveoutRegisterMaskOperand()
2756 MachineOperand &Dest, in parseMachineOperand() argument
2773 return parseRegisterOperand(Dest, TiedDefIdx); in parseMachineOperand()
2775 return parseImmediateOperand(Dest); in parseMachineOperand()
2782 return parseFPImmediateOperand(Dest); in parseMachineOperand()
2784 return parseMBBOperand(Dest); in parseMachineOperand()
2786 return parseStackObjectOperand(Dest); in parseMachineOperand()
2788 return parseFixedStackObjectOperand(Dest); in parseMachineOperand()
2791 return parseGlobalAddressOperand(Dest); in parseMachineOperand()
2793 return parseConstantPoolIndexOperand(Dest); in parseMachineOperand()
2795 return parseJumpTableIndexOperand(Dest); in parseMachineOperand()
2797 return parseExternalSymbolOperand(Dest); in parseMachineOperand()
2799 return parseMCSymbolOperand(Dest); in parseMachineOperand()
2801 return parseSubRegisterIndexOperand(Dest); in parseMachineOperand()
2804 return parseMetadataOperand(Dest); in parseMachineOperand()
2821 return parseCFIOperand(Dest); in parseMachineOperand()
2823 return parseBlockAddressOperand(Dest); in parseMachineOperand()
2825 return parseIntrinsicOperand(Dest); in parseMachineOperand()
2827 return parseTargetIndexOperand(Dest); in parseMachineOperand()
2829 return parseLiveoutRegisterMaskOperand(Dest); in parseMachineOperand()
2832 return parsePredicateOperand(Dest); in parseMachineOperand()
2834 return parseShuffleMaskOperand(Dest); in parseMachineOperand()
2839 Dest = MachineOperand::CreateRegMask(RegMask); in parseMachineOperand()
2843 return parseCustomRegisterMaskOperand(Dest); in parseMachineOperand()
2845 return parseTypedImmediateOperand(Dest); in parseMachineOperand()
2849 return parseTargetImmMnemonic(OpCode, OpIdx, Dest, *Formatter); in parseMachineOperand()
2861 const unsigned OpCode, const unsigned OpIdx, MachineOperand &Dest, in parseMachineOperandAndTargetFlags() argument
2894 if (parseMachineOperand(OpCode, OpIdx, Dest, TiedDefIdx)) in parseMachineOperandAndTargetFlags()
2898 if (Dest.isReg()) in parseMachineOperandAndTargetFlags()
2900 Dest.setTargetFlags(TF); in parseMachineOperandAndTargetFlags()
3130 bool MIParser::parseMachinePointerInfo(MachinePointerInfo &Dest) { in parseMachinePointerInfo() argument
3141 Dest = MachinePointerInfo(PSV, Offset); in parseMachinePointerInfo()
3159 Dest = MachinePointerInfo(V, Offset); in parseMachinePointerInfo()
3205 bool MIParser::parseMachineMemoryOperand(MachineMemOperand *&Dest) { in parseMachineMemoryOperand() argument
3342 Dest = MF.getMachineMemOperand(Ptr, Flags, MemoryType, Align(BaseAlignment), in parseMachineMemoryOperand()