Lines Matching refs:isTarget

1073 SDValue SelectionDAG::getIntPtrConstant(uint64_t Val, bool isTarget) {  in getIntPtrConstant()  argument
1074 return getConstant(Val, TM.getTargetLowering()->getPointerTy(), isTarget); in getIntPtrConstant()
1078 SDValue SelectionDAG::getConstantFP(const APFloat& V, EVT VT, bool isTarget) { in getConstantFP() argument
1079 return getConstantFP(*ConstantFP::get(*getContext(), V), VT, isTarget); in getConstantFP()
1082 SDValue SelectionDAG::getConstantFP(const ConstantFP& V, EVT VT, bool isTarget){ in getConstantFP() argument
1090 unsigned Opc = isTarget ? ISD::TargetConstantFP : ISD::ConstantFP; in getConstantFP()
1101 N = new (NodeAllocator) ConstantFPSDNode(isTarget, &V, EltVT); in getConstantFP()
1116 SDValue SelectionDAG::getConstantFP(double Val, EVT VT, bool isTarget) { in getConstantFP() argument
1119 return getConstantFP(APFloat((float)Val), VT, isTarget); in getConstantFP()
1121 return getConstantFP(APFloat(Val), VT, isTarget); in getConstantFP()
1128 return getConstantFP(apf, VT, isTarget); in getConstantFP()
1177 SDValue SelectionDAG::getFrameIndex(int FI, EVT VT, bool isTarget) { in getFrameIndex() argument
1178 unsigned Opc = isTarget ? ISD::TargetFrameIndex : ISD::FrameIndex; in getFrameIndex()
1186 SDNode *N = new (NodeAllocator) FrameIndexSDNode(FI, VT, isTarget); in getFrameIndex()
1192 SDValue SelectionDAG::getJumpTable(int JTI, EVT VT, bool isTarget, in getJumpTable() argument
1194 assert((TargetFlags == 0 || isTarget) && in getJumpTable()
1196 unsigned Opc = isTarget ? ISD::TargetJumpTable : ISD::JumpTable; in getJumpTable()
1205 SDNode *N = new (NodeAllocator) JumpTableSDNode(JTI, VT, isTarget, in getJumpTable()
1214 bool isTarget, in getConstantPool() argument
1216 assert((TargetFlags == 0 || isTarget) && in getConstantPool()
1221 unsigned Opc = isTarget ? ISD::TargetConstantPool : ISD::ConstantPool; in getConstantPool()
1232 SDNode *N = new (NodeAllocator) ConstantPoolSDNode(isTarget, C, VT, Offset, in getConstantPool()
1242 bool isTarget, in getConstantPool() argument
1244 assert((TargetFlags == 0 || isTarget) && in getConstantPool()
1249 unsigned Opc = isTarget ? ISD::TargetConstantPool : ISD::ConstantPool; in getConstantPool()
1260 SDNode *N = new (NodeAllocator) ConstantPoolSDNode(isTarget, C, VT, Offset, in getConstantPool()
1516 bool isTarget, in getBlockAddress() argument
1518 unsigned Opc = isTarget ? ISD::TargetBlockAddress : ISD::BlockAddress; in getBlockAddress()