Home | History | Annotate | Download | only in SelectionDAG

Lines Matching refs:isTarget

997 SDValue SelectionDAG::getIntPtrConstant(uint64_t Val, bool isTarget) {
998 return getConstant(Val, TLI.getPointerTy(), isTarget);
1002 SDValue SelectionDAG::getConstantFP(const APFloat& V, EVT VT, bool isTarget) {
1003 return getConstantFP(*ConstantFP::get(*getContext(), V), VT, isTarget);
1006 SDValue SelectionDAG::getConstantFP(const ConstantFP& V, EVT VT, bool isTarget){
1014 unsigned Opc = isTarget ? ISD::TargetConstantFP : ISD::ConstantFP;
1025 N = new (NodeAllocator) ConstantFPSDNode(isTarget, &V, EltVT);
1040 SDValue SelectionDAG::getConstantFP(double Val, EVT VT, bool isTarget) {
1043 return getConstantFP(APFloat((float)Val), VT, isTarget);
1045 return getConstantFP(APFloat(Val), VT, isTarget);
1051 return getConstantFP(apf, VT, isTarget);
1098 SDValue SelectionDAG::getFrameIndex(int FI, EVT VT, bool isTarget) {
1099 unsigned Opc = isTarget ? ISD::TargetFrameIndex : ISD::FrameIndex;
1107 SDNode *N = new (NodeAllocator) FrameIndexSDNode(FI, VT, isTarget);
1113 SDValue SelectionDAG::getJumpTable(int JTI, EVT VT, bool isTarget,
1115 assert((TargetFlags == 0 || isTarget) &&
1117 unsigned Opc = isTarget ? ISD::TargetJumpTable : ISD::JumpTable;
1126 SDNode *N = new (NodeAllocator) JumpTableSDNode(JTI, VT, isTarget,
1135 bool isTarget,
1137 assert((TargetFlags == 0 || isTarget) &&
1141 unsigned Opc = isTarget ? ISD::TargetConstantPool : ISD::ConstantPool;
1152 SDNode *N = new (NodeAllocator) ConstantPoolSDNode(isTarget, C, VT, Offset,
1162 bool isTarget,
1164 assert((TargetFlags == 0 || isTarget) &&
1168 unsigned Opc = isTarget ? ISD::TargetConstantPool : ISD::ConstantPool;
1179 SDNode *N = new (NodeAllocator) ConstantPoolSDNode(isTarget, C, VT, Offset,
1419 bool isTarget,
1421 unsigned Opc = isTarget ? ISD::TargetBlockAddress : ISD::BlockAddress;