Searched defs:ImmOp (Results 1 - 12 of 12) sorted by relevance

/external/llvm/lib/Target/ARM/
H A DThumb1RegisterInfo.cpp449 MachineOperand &ImmOp = MI.getOperand(ImmIdx); variable
456 ImmOp.ChangeToImmediate(ImmedOffset);
473 ImmOp.ChangeToImmediate(0);
477 ImmOp.ChangeToImmediate(ImmedOffset);
H A DARMBaseInstrInfo.cpp2099 MachineOperand &ImmOp = MI.getOperand(ImmIdx); local
2114 ImmOp.ChangeToImmediate(ImmedOffset);
2127 ImmOp.ChangeToImmediate(ImmedOffset);
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/MCTargetDesc/
H A DR600MCCodeEmitter.cpp250 MCOperand ImmOp = MI.getOperand(ImmOpIndex); local
251 if (ImmOp.isFPImm()) {
252 Value.f = ImmOp.getFPImm();
254 assert(ImmOp.isImm());
255 Value.i = ImmOp.getImm();
/external/llvm/lib/Target/X86/AsmParser/
H A DX86Operand.h45 struct ImmOp { struct in struct:llvm::X86Operand
61 struct ImmOp Imm;
/external/llvm/lib/Target/X86/
H A DX86MCInstLower.cpp241 unsigned ImmOp = Inst.getNumOperands() - 1; local
243 (Inst.getOperand(ImmOp).isImm() || Inst.getOperand(ImmOp).isExpr()) &&
254 MCOperand Saved = Inst.getOperand(ImmOp);
/external/mesa3d/src/gallium/drivers/radeon/MCTargetDesc/
H A DR600MCCodeEmitter.cpp250 MCOperand ImmOp = MI.getOperand(ImmOpIndex); local
251 if (ImmOp.isFPImm()) {
252 Value.f = ImmOp.getFPImm();
254 assert(ImmOp.isImm());
255 Value.i = ImmOp.getImm();
/external/llvm/lib/Target/Sparc/AsmParser/
H A DSparcAsmParser.cpp162 struct ImmOp { struct in class:__anon25293::SparcOperand
175 struct ImmOp Imm;
/external/llvm/lib/Target/PowerPC/AsmParser/
H A DPPCAsmParser.cpp309 struct ImmOp { struct in struct:__anon25233::PPCOperand
324 struct ImmOp Imm;
/external/llvm/lib/Target/Mips/
H A DMipsSEISelLowering.cpp1398 static SDValue lowerMSASplatImm(SDValue Op, unsigned ImmOp, SelectionDAG &DAG) { argument
1399 return DAG.getConstant(Op->getConstantOperandVal(ImmOp), Op->getValueType(0));
/external/llvm/lib/Target/AArch64/AsmParser/
H A DAArch64AsmParser.cpp188 struct ImmOp { struct in class:__anon25114::AArch64Operand
240 struct ImmOp Imm;
3786 AArch64Operand &ImmOp = static_cast<AArch64Operand &>(*Operands[2]); local
3787 if (RegOp.isReg() && ImmOp.isFPImm() && ImmOp.getFPImm() == (unsigned)-1) {
/external/llvm/lib/Target/Mips/AsmParser/
H A DMipsAsmParser.cpp362 struct ImmOp { struct in class:__anon25200::MipsOperand
375 struct ImmOp Imm;
1080 const MCOperand &ImmOp = Inst.getOperand(1); local
1081 assert(ImmOp.isImm() && "expected immediate operand kind");
1085 int64_t ImmValue = ImmOp.getImm();
1178 const MCOperand &ImmOp = Inst.getOperand(2); local
1179 assert(ImmOp.isImm() && "expected immediate operand kind");
1184 int ImmValue = ImmOp.getImm();
1222 const MCOperand &ImmOp = Inst.getOperand(1); local
1223 assert(ImmOp
[all...]
/external/llvm/lib/Target/ARM/AsmParser/
H A DARMAsmParser.cpp459 struct ImmOp { struct in class:__anon25150::ARMOperand
524 struct ImmOp Imm;
4402 int CondOp = -1, ImmOp = -1; local
4405 case ARM::tBcc: CondOp = 1; ImmOp = 2; break;
4408 case ARM::t2Bcc: CondOp = 1; ImmOp = 3; break;
4441 ARMOperand &op = static_cast<ARMOperand &>(*Operands[ImmOp]);
4448 ARMOperand &op = static_cast<ARMOperand &>(*Operands[ImmOp]);
4454 ((ARMOperand &)*Operands[ImmOp]).addImmOperands(Inst, 1);

Completed in 207 milliseconds