Home | History | Annotate | Download | only in PowerPC

Lines Matching refs:Disp

850 bool PPCTargetLowering::SelectAddressRegImm(SDValue N, SDValue &Disp,
856 if (SelectAddressRegReg(N, Disp, Base, DAG))
862 Disp = DAG.getTargetConstant((int)imm & 0xFFFF, MVT::i32);
873 Disp = N.getOperand(1).getOperand(0); // The global address.
874 assert(Disp.getOpcode() == ISD::TargetGlobalAddress ||
875 Disp.getOpcode() == ISD::TargetConstantPool ||
876 Disp.getOpcode() == ISD::TargetJumpTable);
896 Disp = DAG.getTargetConstant((int)imm & 0xFFFF, MVT::i32);
907 Disp = DAG.getTargetConstant(Imm, CN->getValueType(0));
918 // Otherwise, break this down into an LIS + disp.
919 Disp = DAG.getTargetConstant((short)Addr, MVT::i32);
928 Disp = DAG.getTargetConstant(0, getPointerTy());
966 bool PPCTargetLowering::SelectAddressRegImmShift(SDValue N, SDValue &Disp,
972 if (SelectAddressRegReg(N, Disp, Base, DAG))
978 Disp = DAG.getTargetConstant(((int)imm & 0xFFFF) >> 2, MVT::i32);
989 Disp = N.getOperand(1).getOperand(0); // The global address.
990 assert(Disp.getOpcode() == ISD::TargetGlobalAddress ||
991 Disp.getOpcode() == ISD::TargetConstantPool ||
992 Disp.getOpcode() == ISD::TargetJumpTable);
1011 Disp = DAG.getTargetConstant(((int)imm & 0xFFFF) >> 2, MVT::i32);
1022 Disp = DAG.getTargetConstant((unsigned short)Imm >> 2, getPointerTy());
1033 // Otherwise, break this down into an LIS + disp.
1034 Disp = DAG.getTargetConstant((short)Addr >> 2, MVT::i32);
1043 Disp = DAG.getTargetConstant(0, getPointerTy());