Lines Matching refs:isTarget
979 SDValue SelectionDAG::getIntPtrConstant(uint64_t Val, bool isTarget) {
980 return getConstant(Val, TLI.getPointerTy(), isTarget);
984 SDValue SelectionDAG::getConstantFP(const APFloat& V, EVT VT, bool isTarget) {
985 return getConstantFP(*ConstantFP::get(*getContext(), V), VT, isTarget);
988 SDValue SelectionDAG::getConstantFP(const ConstantFP& V, EVT VT, bool isTarget){
996 unsigned Opc = isTarget ? ISD::TargetConstantFP : ISD::ConstantFP;
1007 N = new (NodeAllocator) ConstantFPSDNode(isTarget, &V, EltVT);
1022 SDValue SelectionDAG::getConstantFP(double Val, EVT VT, bool isTarget) {
1025 return getConstantFP(APFloat((float)Val), VT, isTarget);
1027 return getConstantFP(APFloat(Val), VT, isTarget);
1033 return getConstantFP(apf, VT, isTarget);
1082 SDValue SelectionDAG::getFrameIndex(int FI, EVT VT, bool isTarget) {
1083 unsigned Opc = isTarget ? ISD::TargetFrameIndex : ISD::FrameIndex;
1091 SDNode *N = new (NodeAllocator) FrameIndexSDNode(FI, VT, isTarget);
1097 SDValue SelectionDAG::getJumpTable(int JTI, EVT VT, bool isTarget,
1099 assert((TargetFlags == 0 || isTarget) &&
1101 unsigned Opc = isTarget ? ISD::TargetJumpTable : ISD::JumpTable;
1110 SDNode *N = new (NodeAllocator) JumpTableSDNode(JTI, VT, isTarget,
1119 bool isTarget,
1121 assert((TargetFlags == 0 || isTarget) &&
1125 unsigned Opc = isTarget ? ISD::TargetConstantPool : ISD::ConstantPool;
1136 SDNode *N = new (NodeAllocator) ConstantPoolSDNode(isTarget, C, VT, Offset,
1146 bool isTarget,
1148 assert((TargetFlags == 0 || isTarget) &&
1152 unsigned Opc = isTarget ? ISD::TargetConstantPool : ISD::ConstantPool;
1163 SDNode *N = new (NodeAllocator) ConstantPoolSDNode(isTarget, C, VT, Offset,
1389 bool isTarget,
1391 unsigned Opc = isTarget ? ISD::TargetBlockAddress : ISD::BlockAddress;