Home
last modified time | relevance | path

Searched refs:MO (Results 1 – 25 of 391) sorted by relevance

12345678910>>...16

/external/llvm/lib/Target/AArch64/
DAArch64MCInstLower.cpp35 AArch64MCInstLower::GetGlobalAddressSymbol(const MachineOperand &MO) const { in GetGlobalAddressSymbol()
36 return Printer.getSymbol(MO.getGlobal()); in GetGlobalAddressSymbol()
40 AArch64MCInstLower::GetExternalSymbolSymbol(const MachineOperand &MO) const { in GetExternalSymbolSymbol()
41 return Printer.GetExternalSymbolSymbol(MO.getSymbolName()); in GetExternalSymbolSymbol()
44 MCOperand AArch64MCInstLower::lowerSymbolOperandDarwin(const MachineOperand &MO, in lowerSymbolOperandDarwin() argument
49 if ((MO.getTargetFlags() & AArch64II::MO_GOT) != 0) { in lowerSymbolOperandDarwin()
50 if ((MO.getTargetFlags() & AArch64II::MO_FRAGMENT) == AArch64II::MO_PAGE) in lowerSymbolOperandDarwin()
52 else if ((MO.getTargetFlags() & AArch64II::MO_FRAGMENT) == in lowerSymbolOperandDarwin()
57 } else if ((MO.getTargetFlags() & AArch64II::MO_TLS) != 0) { in lowerSymbolOperandDarwin()
58 if ((MO.getTargetFlags() & AArch64II::MO_FRAGMENT) == AArch64II::MO_PAGE) in lowerSymbolOperandDarwin()
[all …]
/external/llvm/lib/Target/MSP430/
DMSP430MCInstLower.cpp32 GetGlobalAddressSymbol(const MachineOperand &MO) const { in GetGlobalAddressSymbol()
33 switch (MO.getTargetFlags()) { in GetGlobalAddressSymbol()
38 return Printer.getSymbol(MO.getGlobal()); in GetGlobalAddressSymbol()
42 GetExternalSymbolSymbol(const MachineOperand &MO) const { in GetExternalSymbolSymbol()
43 switch (MO.getTargetFlags()) { in GetExternalSymbolSymbol()
48 return Printer.GetExternalSymbolSymbol(MO.getSymbolName()); in GetExternalSymbolSymbol()
52 GetJumpTableSymbol(const MachineOperand &MO) const { in GetJumpTableSymbol()
57 << MO.getIndex(); in GetJumpTableSymbol()
59 switch (MO.getTargetFlags()) { in GetJumpTableSymbol()
69 GetConstantPoolIndexSymbol(const MachineOperand &MO) const { in GetConstantPoolIndexSymbol()
[all …]
/external/llvm/lib/Target/AArch64/MCTargetDesc/
DAArch64MCCodeEmitter.cpp54 unsigned getMachineOpValue(const MCInst &MI, const MCOperand &MO,
204 AArch64MCCodeEmitter::getMachineOpValue(const MCInst &MI, const MCOperand &MO, in getMachineOpValue() argument
207 if (MO.isReg()) in getMachineOpValue()
208 return Ctx.getRegisterInfo()->getEncodingValue(MO.getReg()); in getMachineOpValue()
210 assert(MO.isImm() && "did not expect relocated expression"); in getMachineOpValue()
211 return static_cast<unsigned>(MO.getImm()); in getMachineOpValue()
218 const MCOperand &MO = MI.getOperand(OpIdx); in getLdStUImm12OpValue() local
221 if (MO.isImm()) in getLdStUImm12OpValue()
222 ImmVal = static_cast<uint32_t>(MO.getImm()); in getLdStUImm12OpValue()
224 assert(MO.isExpr() && "unable to encode load/store imm operand"); in getLdStUImm12OpValue()
[all …]
/external/llvm/lib/Target/PowerPC/
DPPCMCInstLower.cpp38 static MCSymbol *GetSymbolFromOperand(const MachineOperand &MO, AsmPrinter &AP){ in GetSymbolFromOperand() argument
47 if (MO.getTargetFlags() == PPCII::MO_PLT_OR_STUB) { in GetSymbolFromOperand()
50 } else if (MO.getTargetFlags() & PPCII::MO_NLP_FLAG) in GetSymbolFromOperand()
58 if (!MO.isGlobal()) { in GetSymbolFromOperand()
59 assert(MO.isSymbol() && "Isn't a symbol reference"); in GetSymbolFromOperand()
60 Mangler::getNameWithPrefix(Name, MO.getSymbolName(), DL); in GetSymbolFromOperand()
62 const GlobalValue *GV = MO.getGlobal(); in GetSymbolFromOperand()
74 if (MO.getTargetFlags() == PPCII::MO_PLT_OR_STUB && isDarwin) { in GetSymbolFromOperand()
80 if (MO.isGlobal()) { in GetSymbolFromOperand()
83 StubValueTy(AP.getSymbol(MO.getGlobal()), in GetSymbolFromOperand()
[all …]
/external/llvm/lib/Target/PowerPC/MCTargetDesc/
DPPCMCCodeEmitter.cpp93 unsigned getMachineOpValue(const MCInst &MI,const MCOperand &MO,
156 const MCOperand &MO = MI.getOperand(OpNo); in getDirectBrEncoding() local
157 if (MO.isReg() || MO.isImm()) return getMachineOpValue(MI, MO, Fixups, STI); in getDirectBrEncoding()
160 Fixups.push_back(MCFixup::create(0, MO.getExpr(), in getDirectBrEncoding()
168 const MCOperand &MO = MI.getOperand(OpNo); in getCondBrEncoding() local
169 if (MO.isReg() || MO.isImm()) return getMachineOpValue(MI, MO, Fixups, STI); in getCondBrEncoding()
172 Fixups.push_back(MCFixup::create(0, MO.getExpr(), in getCondBrEncoding()
181 const MCOperand &MO = MI.getOperand(OpNo); in getAbsDirectBrEncoding() local
182 if (MO.isReg() || MO.isImm()) return getMachineOpValue(MI, MO, Fixups, STI); in getAbsDirectBrEncoding()
185 Fixups.push_back(MCFixup::create(0, MO.getExpr(), in getAbsDirectBrEncoding()
[all …]
/external/llvm/lib/CodeGen/
DMachineInstr.cpp263 hash_code llvm::hash_value(const MachineOperand &MO) { in hash_value() argument
264 switch (MO.getType()) { in hash_value()
267 return hash_combine(MO.getType(), MO.getReg(), MO.getSubReg(), MO.isDef()); in hash_value()
269 return hash_combine(MO.getType(), MO.getTargetFlags(), MO.getImm()); in hash_value()
271 return hash_combine(MO.getType(), MO.getTargetFlags(), MO.getCImm()); in hash_value()
273 return hash_combine(MO.getType(), MO.getTargetFlags(), MO.getFPImm()); in hash_value()
275 return hash_combine(MO.getType(), MO.getTargetFlags(), MO.getMBB()); in hash_value()
277 return hash_combine(MO.getType(), MO.getTargetFlags(), MO.getIndex()); in hash_value()
280 return hash_combine(MO.getType(), MO.getTargetFlags(), MO.getIndex(), in hash_value()
281 MO.getOffset()); in hash_value()
[all …]
DMachineRegisterInfo.cpp74 for (MachineOperand &MO : reg_nodbg_operands(Reg)) { in recomputeRegClass()
76 MachineInstr *MI = MO.getParent(); in recomputeRegClass()
77 unsigned OpNo = &MO - &MI->getOperand(0); in recomputeRegClass()
126 MachineOperand *MO = &M; in verifyUseList() local
127 MachineInstr *MI = MO->getParent(); in verifyUseList()
130 << " use list MachineOperand " << MO in verifyUseList()
137 if (!(MO >= MO0 && MO < MO0+NumOps)) { in verifyUseList()
139 << " use list MachineOperand " << MO in verifyUseList()
143 if (!MO->isReg()) { in verifyUseList()
145 << " MachineOperand " << MO << ": " << *MO in verifyUseList()
[all …]
DRegAllocFast.cpp219 bool RAFast::isLastUseOfLocalReg(MachineOperand &MO) { in isLastUseOfLocalReg() argument
222 if (StackSlotForVirtReg[MO.getReg()] != -1) in isLastUseOfLocalReg()
226 MachineRegisterInfo::reg_nodbg_iterator I = MRI->reg_nodbg_begin(MO.getReg()); in isLastUseOfLocalReg()
227 if (&*I != &MO) in isLastUseOfLocalReg()
235 MachineOperand &MO = LR.LastUse->getOperand(LR.LastOpNum); in addKillFlag() local
236 if (MO.isUse() && !LR.LastUse->isRegTiedToDefOperand(LR.LastOpNum)) { in addKillFlag()
237 if (MO.getReg() == LR.PhysReg) in addKillFlag()
238 MO.setIsKill(); in addKillFlag()
344 void RAFast::usePhysReg(MachineOperand &MO) { in usePhysReg() argument
345 unsigned PhysReg = MO.getReg(); in usePhysReg()
[all …]
DMachineInstrBundle.cpp61 MachineOperand &MO = MII->getOperand(i); in runOnMachineFunction() local
62 if (MO.isReg() && MO.isInternalRead()) in runOnMachineFunction()
63 MO.setIsInternalRead(false); in runOnMachineFunction()
137 MachineOperand &MO = FirstMI->getOperand(i); in finalizeBundle() local
138 if (!MO.isReg()) in finalizeBundle()
140 if (MO.isDef()) { in finalizeBundle()
141 Defs.push_back(&MO); in finalizeBundle()
145 unsigned Reg = MO.getReg(); in finalizeBundle()
150 MO.setIsInternalRead(); in finalizeBundle()
151 if (MO.isKill()) in finalizeBundle()
[all …]
DRegisterScavenging.cpp111 const MachineOperand &MO = MI->getOperand(i); in determineKillsAndDefs() local
112 if (MO.isRegMask()) { in determineKillsAndDefs()
117 if (MO.clobbersPhysReg(*RURI)) { in determineKillsAndDefs()
127 if (!MO.isReg()) in determineKillsAndDefs()
129 unsigned Reg = MO.getReg(); in determineKillsAndDefs()
133 if (MO.isUse()) { in determineKillsAndDefs()
135 if (MO.isUndef()) in determineKillsAndDefs()
137 if (MO.isKill()) in determineKillsAndDefs()
140 assert(MO.isDef()); in determineKillsAndDefs()
141 if (MO.isDead()) in determineKillsAndDefs()
[all …]
DMachineLICM.cpp357 const MachineOperand &MO = MI->getOperand(i); in ProcessMI() local
358 if (MO.isFI()) { in ProcessMI()
360 int FI = MO.getIndex(); in ProcessMI()
371 if (MO.isRegMask()) { in ProcessMI()
372 PhysRegClobbers.setBitsNotInMask(MO.getRegMask()); in ProcessMI()
376 if (!MO.isReg()) in ProcessMI()
378 unsigned Reg = MO.getReg(); in ProcessMI()
384 if (!MO.isDef()) { in ProcessMI()
392 if (MO.isImplicit()) { in ProcessMI()
395 if (!MO.isDead()) in ProcessMI()
[all …]
DMachineCSE.cpp126 MachineOperand &MO = MI->getOperand(i); in INITIALIZE_PASS_DEPENDENCY() local
127 if (!MO.isReg() || !MO.isUse()) in INITIALIZE_PASS_DEPENDENCY()
129 unsigned Reg = MO.getReg(); in INITIALIZE_PASS_DEPENDENCY()
161 MO.setReg(SrcReg); in INITIALIZE_PASS_DEPENDENCY()
190 const MachineOperand &MO = I->getOperand(i); in isPhysDefTriviallyDead() local
191 if (MO.isRegMask() && MO.clobbersPhysReg(Reg)) in isPhysDefTriviallyDead()
193 if (!MO.isReg() || !MO.getReg()) in isPhysDefTriviallyDead()
195 if (!TRI->regsOverlap(MO.getReg(), Reg)) in isPhysDefTriviallyDead()
197 if (MO.isUse()) in isPhysDefTriviallyDead()
224 const MachineOperand &MO = MI->getOperand(i); in hasLivePhysRegDefUses() local
[all …]
DDeadMachineInstructionElim.cpp73 const MachineOperand &MO = MI->getOperand(i); in isDead() local
74 if (MO.isReg() && MO.isDef()) { in isDead()
75 unsigned Reg = MO.getReg(); in isDead()
139 const MachineOperand &MO = MI->getOperand(i); in runOnMachineFunction() local
140 if (MO.isReg() && MO.isDef()) { in runOnMachineFunction()
141 unsigned Reg = MO.getReg(); in runOnMachineFunction()
150 } else if (MO.isRegMask()) { in runOnMachineFunction()
152 LivePhysRegs.clearBitsNotInMask(MO.getRegMask()); in runOnMachineFunction()
158 const MachineOperand &MO = MI->getOperand(i); in runOnMachineFunction() local
159 if (MO.isReg() && MO.isUse()) { in runOnMachineFunction()
[all …]
/external/llvm/lib/Target/Sparc/MCTargetDesc/
DSparcMCCodeEmitter.cpp56 unsigned getMachineOpValue(const MCInst &MI, const MCOperand &MO,
104 const MCOperand &MO = MI.getOperand(tlsOpNo); in encodeInstruction() local
105 uint64_t op = getMachineOpValue(MI, MO, Fixups, STI); in encodeInstruction()
115 getMachineOpValue(const MCInst &MI, const MCOperand &MO, in getMachineOpValue() argument
119 if (MO.isReg()) in getMachineOpValue()
120 return Ctx.getRegisterInfo()->getEncodingValue(MO.getReg()); in getMachineOpValue()
122 if (MO.isImm()) in getMachineOpValue()
123 return MO.getImm(); in getMachineOpValue()
125 assert(MO.isExpr()); in getMachineOpValue()
126 const MCExpr *Expr = MO.getExpr(); in getMachineOpValue()
[all …]
/external/llvm/lib/Target/ARM/
DARMMCInstLower.cpp27 MCOperand ARMAsmPrinter::GetSymbolRef(const MachineOperand &MO, in GetSymbolRef() argument
30 unsigned Option = MO.getTargetFlags() & ARMII::MO_OPTION_MASK; in GetSymbolRef()
59 if (!MO.isJTI() && MO.getOffset()) in GetSymbolRef()
61 MCConstantExpr::create(MO.getOffset(), in GetSymbolRef()
68 bool ARMAsmPrinter::lowerOperand(const MachineOperand &MO, in lowerOperand() argument
70 switch (MO.getType()) { in lowerOperand()
74 if (MO.isImplicit() && MO.getReg() != ARM::CPSR) in lowerOperand()
76 assert(!MO.getSubReg() && "Subregs should be eliminated!"); in lowerOperand()
77 MCOp = MCOperand::createReg(MO.getReg()); in lowerOperand()
80 MCOp = MCOperand::createImm(MO.getImm()); in lowerOperand()
[all …]
/external/llvm/lib/Target/WebAssembly/
DWebAssemblyMCInstLower.cpp31 WebAssemblyMCInstLower::GetGlobalAddressSymbol(const MachineOperand &MO) const { in GetGlobalAddressSymbol()
32 return Printer.getSymbol(MO.getGlobal()); in GetGlobalAddressSymbol()
36 const MachineOperand &MO) const { in GetExternalSymbolSymbol()
37 return Printer.GetExternalSymbolSymbol(MO.getSymbolName()); in GetExternalSymbolSymbol()
40 MCOperand WebAssemblyMCInstLower::LowerSymbolOperand(const MachineOperand &MO, in LowerSymbolOperand() argument
42 assert(MO.getTargetFlags() == 0 && "WebAssembly does not use target flags"); in LowerSymbolOperand()
46 int64_t Offset = MO.getOffset(); in LowerSymbolOperand()
48 assert(!MO.isJTI() && "Unexpected offset with jump table index"); in LowerSymbolOperand()
61 const MachineOperand &MO = MI->getOperand(i); in Lower() local
64 switch (MO.getType()) { in Lower()
[all …]
/external/llvm/lib/Target/Hexagon/
DHexagonMCInstLower.cpp34 static MCOperand GetSymbolRef(const MachineOperand &MO, const MCSymbol *Symbol, in GetSymbolRef() argument
42 switch (MO.getTargetFlags()) { in GetSymbolRef()
65 if (!MO.isJTI() && MO.getOffset()) in GetSymbolRef()
66 ME = MCBinaryExpr::createAdd(ME, MCConstantExpr::create(MO.getOffset(), MC), in GetSymbolRef()
90 const MachineOperand &MO = MI->getOperand(i); in HexagonLowerToMC() local
92 if (MO.getTargetFlags() & HexagonII::HMOTF_ConstExtended) in HexagonLowerToMC()
95 switch (MO.getType()) { in HexagonLowerToMC()
101 if (MO.isImplicit()) continue; in HexagonLowerToMC()
102 MCO = MCOperand::createReg(MO.getReg()); in HexagonLowerToMC()
105 APFloat Val = MO.getFPImm()->getValueAPF(); in HexagonLowerToMC()
[all …]
/external/llvm/lib/Target/SystemZ/
DSystemZMCInstLower.cpp37 SystemZMCInstLower::getExpr(const MachineOperand &MO, in getExpr() argument
41 switch (MO.getType()) { in getExpr()
43 Symbol = MO.getMBB()->getSymbol(); in getExpr()
48 Symbol = AsmPrinter.getSymbol(MO.getGlobal()); in getExpr()
52 Symbol = AsmPrinter.GetExternalSymbolSymbol(MO.getSymbolName()); in getExpr()
56 Symbol = AsmPrinter.GetJTISymbol(MO.getIndex()); in getExpr()
61 Symbol = AsmPrinter.GetCPISymbol(MO.getIndex()); in getExpr()
65 Symbol = AsmPrinter.GetBlockAddressSymbol(MO.getBlockAddress()); in getExpr()
73 if (int64_t Offset = MO.getOffset()) { in getExpr()
80 MCOperand SystemZMCInstLower::lowerOperand(const MachineOperand &MO) const { in lowerOperand()
[all …]
/external/llvm/lib/Target/XCore/
DXCoreMCInstLower.cpp35 MCOperand XCoreMCInstLower::LowerSymbolOperand(const MachineOperand &MO, in LowerSymbolOperand() argument
43 Symbol = MO.getMBB()->getSymbol(); in LowerSymbolOperand()
46 Symbol = Printer.getSymbol(MO.getGlobal()); in LowerSymbolOperand()
47 Offset += MO.getOffset(); in LowerSymbolOperand()
50 Symbol = Printer.GetBlockAddressSymbol(MO.getBlockAddress()); in LowerSymbolOperand()
51 Offset += MO.getOffset(); in LowerSymbolOperand()
54 Symbol = Printer.GetExternalSymbolSymbol(MO.getSymbolName()); in LowerSymbolOperand()
55 Offset += MO.getOffset(); in LowerSymbolOperand()
58 Symbol = Printer.GetJTISymbol(MO.getIndex()); in LowerSymbolOperand()
61 Symbol = Printer.GetCPISymbol(MO.getIndex()); in LowerSymbolOperand()
[all …]
/external/llvm/lib/Target/Mips/MCTargetDesc/
DMipsMCCodeEmitter.cpp225 const MCOperand &MO = MI.getOperand(OpNo); in getBranchTargetOpValue() local
228 if (MO.isImm()) return MO.getImm() >> 2; in getBranchTargetOpValue()
230 assert(MO.isExpr() && in getBranchTargetOpValue()
234 MO.getExpr(), MCConstantExpr::create(-4, Ctx), Ctx); in getBranchTargetOpValue()
248 const MCOperand &MO = MI.getOperand(OpNo); in getBranchTarget7OpValueMM() local
251 if (MO.isImm()) return MO.getImm() >> 1; in getBranchTarget7OpValueMM()
253 assert(MO.isExpr() && in getBranchTarget7OpValueMM()
256 const MCExpr *Expr = MO.getExpr(); in getBranchTarget7OpValueMM()
270 const MCOperand &MO = MI.getOperand(OpNo); in getBranchTargetOpValueMMPC10() local
273 if (MO.isImm()) return MO.getImm() >> 1; in getBranchTargetOpValueMMPC10()
[all …]
/external/llvm/lib/Target/Sparc/
DSparcMCInstLower.cpp32 const MachineOperand &MO, in LowerSymbolOperand() argument
36 (SparcMCExpr::VariantKind)MO.getTargetFlags(); in LowerSymbolOperand()
39 switch(MO.getType()) { in LowerSymbolOperand()
42 Symbol = MO.getMBB()->getSymbol(); in LowerSymbolOperand()
46 Symbol = AP.getSymbol(MO.getGlobal()); in LowerSymbolOperand()
50 Symbol = AP.GetBlockAddressSymbol(MO.getBlockAddress()); in LowerSymbolOperand()
54 Symbol = AP.GetExternalSymbolSymbol(MO.getSymbolName()); in LowerSymbolOperand()
58 Symbol = AP.GetCPISymbol(MO.getIndex()); in LowerSymbolOperand()
70 const MachineOperand &MO, in LowerOperand() argument
72 switch(MO.getType()) { in LowerOperand()
[all …]
/external/llvm/lib/Target/BPF/
DBPFMCInstLower.cpp29 BPFMCInstLower::GetGlobalAddressSymbol(const MachineOperand &MO) const { in GetGlobalAddressSymbol()
30 return Printer.getSymbol(MO.getGlobal()); in GetGlobalAddressSymbol()
33 MCOperand BPFMCInstLower::LowerSymbolOperand(const MachineOperand &MO, in LowerSymbolOperand() argument
38 if (!MO.isJTI() && MO.getOffset()) in LowerSymbolOperand()
48 const MachineOperand &MO = MI->getOperand(i); in Lower() local
51 switch (MO.getType()) { in Lower()
57 if (MO.isImplicit()) in Lower()
59 MCOp = MCOperand::createReg(MO.getReg()); in Lower()
62 MCOp = MCOperand::createImm(MO.getImm()); in Lower()
66 MCSymbolRefExpr::create(MO.getMBB()->getSymbol(), Ctx)); in Lower()
[all …]
/external/llvm/lib/Target/ARM/MCTargetDesc/
DARMMCCodeEmitter.cpp74 unsigned getMachineOpValue(const MCInst &MI,const MCOperand &MO,
277 const MCOperand &MO = MI.getOperand(Op); in getSOImmOpValue() local
282 if (MO.isExpr()) { in getSOImmOpValue()
283 const MCExpr *Expr = MO.getExpr(); in getSOImmOpValue()
294 unsigned SoImm = MO.getImm(); in getSOImmOpValue()
310 const MCOperand &MO = MI.getOperand(Op); in getModImmOpValue() local
313 if (MO.isExpr()) { in getModImmOpValue()
314 const MCExpr *Expr = MO.getExpr(); in getModImmOpValue()
326 return MO.getImm(); in getModImmOpValue()
529 getMachineOpValue(const MCInst &MI, const MCOperand &MO, in getMachineOpValue() argument
[all …]
/external/llvm/lib/Target/AMDGPU/MCTargetDesc/
DSIMCCodeEmitter.cpp44 uint32_t getLitEncoding(const MCOperand &MO, unsigned OpSize) const;
59 uint64_t getMachineOpValue(const MCInst &MI, const MCOperand &MO,
163 uint32_t SIMCCodeEmitter::getLitEncoding(const MCOperand &MO, in getLitEncoding() argument
165 if (MO.isExpr()) in getLitEncoding()
168 assert(!MO.isFPImm()); in getLitEncoding()
170 if (!MO.isImm()) in getLitEncoding()
174 return getLit32Encoding(static_cast<uint32_t>(MO.getImm())); in getLitEncoding()
178 return getLit64Encoding(static_cast<uint64_t>(MO.getImm())); in getLitEncoding()
231 const MCOperand &MO = MI.getOperand(OpNo); in getSOPPBrEncoding() local
233 if (MO.isExpr()) { in getSOPPBrEncoding()
[all …]
/external/llvm/lib/Target/Mips/
DMipsMCInstLower.cpp36 MCOperand MipsMCInstLower::LowerSymbolOperand(const MachineOperand &MO, in LowerSymbolOperand() argument
42 switch(MO.getTargetFlags()) { in LowerSymbolOperand()
73 Symbol = MO.getMBB()->getSymbol(); in LowerSymbolOperand()
77 Symbol = AsmPrinter.getSymbol(MO.getGlobal()); in LowerSymbolOperand()
78 Offset += MO.getOffset(); in LowerSymbolOperand()
82 Symbol = AsmPrinter.GetBlockAddressSymbol(MO.getBlockAddress()); in LowerSymbolOperand()
83 Offset += MO.getOffset(); in LowerSymbolOperand()
87 Symbol = AsmPrinter.GetExternalSymbolSymbol(MO.getSymbolName()); in LowerSymbolOperand()
88 Offset += MO.getOffset(); in LowerSymbolOperand()
92 Symbol = MO.getMCSymbol(); in LowerSymbolOperand()
[all …]

12345678910>>...16