Searched refs:SegReg (Results 1 – 5 of 5) sorted by relevance
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/AsmParser/ |
H A D | X86Operand.h | 63 unsigned SegReg; member 154 if (Mem.SegReg) in print() 155 OS << ",SegReg=" << X86IntelInstPrinter::getRegisterName(Mem.SegReg); in print() 191 return Mem.SegReg; in getMemSegReg() 721 Res->Mem.SegReg = 0; 740 CreateMem(unsigned ModeSize, unsigned SegReg, const MCExpr *Disp, 749 assert((SegReg || BaseReg || IndexReg || DefaultBaseReg) && 756 Res->Mem.SegReg = SegReg;
|
H A D | X86AsmParser.cpp | 1148 bool ParseMemOperand(unsigned SegReg, const MCExpr *Disp, SMLoc StartLoc, 1154 bool CreateMemForMSInlineAsm(unsigned SegReg, const MCExpr *Disp, 1727 FinalOp.Mem.SegReg = OrigOp.Mem.SegReg; in VerifyAndAdjustOperands() 1756 bool X86AsmParser::CreateMemForMSInlineAsm(unsigned SegReg, const MCExpr *Disp, in CreateMemForMSInlineAsm() argument 1798 getPointerWidth(), SegReg, Disp, BaseReg, IndexReg, Scale, Start, End, in CreateMemForMSInlineAsm() 2957 bool X86AsmParser::ParseMemOperand(unsigned SegReg, const MCExpr *Disp, in ParseMemOperand() argument 3033 if (SegReg == 0) in ParseMemOperand() 3037 Operands.push_back(X86Operand::CreateMem(getPointerWidth(), SegReg, Disp, in ParseMemOperand() 3121 if (BaseReg == X86::DX && IndexReg == 0 && Scale == 1 && SegReg == 0 && in ParseMemOperand() 3161 if (SegReg || BaseReg || IndexReg) in ParseMemOperand() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/MCTargetDesc/ |
H A D | X86MCTargetDesc.cpp | 664 const MCOperand &SegReg = Inst.getOperand(MemOpStart + X86::AddrSegmentReg); in evaluateMemoryOperandAddress() local 669 if (SegReg.getReg() != 0 || IndexReg.getReg() != 0 || ScaleAmt.getImm() != 1 || in evaluateMemoryOperandAddress() 690 const MCOperand &SegReg = Inst.getOperand(MemOpStart + X86::AddrSegmentReg); in getMemoryOperandRelocationOffset() local 696 if (BaseReg.getReg() != X86::RIP || SegReg.getReg() != 0 || in getMemoryOperandRelocationOffset()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/ |
H A D | X86AsmPrinter.cpp | 476 const MachineOperand &SegReg = MI->getOperand(OpNo + X86::AddrSegmentReg); in PrintIntelMemReference() local 491 if (SegReg.getReg()) { in PrintIntelMemReference()
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/ |
H A D | LegalizerHelper.cpp | 6070 Register SegReg = SrcRegs[i]; in narrowScalarExtract() local 6073 SegReg = MRI.createGenericVirtualRegister(LLT::scalar(SegSize)); in narrowScalarExtract() 6074 MIRBuilder.buildExtract(SegReg, SrcRegs[i], ExtractOffset); in narrowScalarExtract() 6077 DstRegs.push_back(SegReg); in narrowScalarExtract() 6150 Register SegReg = OpReg; in narrowScalarInsert() local 6153 SegReg = MRI.createGenericVirtualRegister(LLT::scalar(SegSize)); in narrowScalarInsert() 6154 MIRBuilder.buildExtract(SegReg, OpReg, ExtractOffset); in narrowScalarInsert() 6158 MIRBuilder.buildInsert(DstReg, SrcReg, SegReg, InsertOffset); in narrowScalarInsert()
|