Searched refs:isTarget (Results 1 – 4 of 4) sorted by relevance
/openbsd/gnu/llvm/llvm/include/llvm/CodeGen/ |
H A D | SelectionDAGNodes.h | 1591 ConstantSDNode(bool isTarget, bool isOpaque, const ConstantInt *val, EVT VT) 1592 : SDNode(isTarget ? ISD::TargetConstant : ISD::Constant, 0, DebugLoc(), 1640 ConstantFPSDNode(bool isTarget, const ConstantFP *val, EVT VT) 1641 : SDNode(isTarget ? ISD::TargetConstantFP : ISD::ConstantFP, 0, 1898 ConstantPoolSDNode(bool isTarget, const Constant *c, EVT VT, int o, 1900 : SDNode(isTarget ? ISD::TargetConstantPool : ISD::ConstantPool, 0, 1907 ConstantPoolSDNode(bool isTarget, MachineConstantPoolValue *v, EVT VT, int o, 1909 : SDNode(isTarget ? ISD::TargetConstantPool : ISD::ConstantPool, 0, 2247 ExternalSymbolSDNode(bool isTarget, const char *Sym, unsigned TF, EVT VT) 2248 : SDNode(isTarget ? ISD::TargetExternalSymbol : ISD::ExternalSymbol, 0,
|
H A D | SelectionDAG.h | 652 bool isTarget = false, bool isOpaque = false); 654 bool isTarget = false, bool isOpaque = false); 663 bool isTarget = false, bool isOpaque = false); 665 bool isTarget = false); 669 bool isTarget = false); 698 bool isTarget = false); 700 bool isTarget = false); 702 bool isTarget = false); 721 SDValue getFrameIndex(int FI, EVT VT, bool isTarget = false); 725 SDValue getJumpTable(int JTI, EVT VT, bool isTarget = false, [all …]
|
/openbsd/gnu/llvm/llvm/lib/CodeGen/SelectionDAG/ |
H A D | SelectionDAG.cpp | 1636 bool isTarget) { in getIntPtrConstant() argument 1648 bool isTarget) { in getVectorIdxConstant() argument 1653 bool isTarget) { in getConstantFP() argument 1677 N = newSDNode<ConstantFPSDNode>(isTarget, &V, EltVT); in getConstantFP() 1690 bool isTarget) { in getConstantFP() argument 1695 return getConstantFP(APFloat(Val), DL, VT, isTarget); in getConstantFP() 1702 return getConstantFP(APF, DL, VT, isTarget); in getConstantFP() 1749 auto *N = newSDNode<FrameIndexSDNode>(FI, VT, isTarget); in getFrameIndex() 1757 assert((TargetFlags == 0 || isTarget) && in getJumpTable() 1777 assert((TargetFlags == 0 || isTarget) && in getConstantPool() [all …]
|
/openbsd/gnu/llvm/llvm/include/llvm/IR/ |
H A D | Intrinsics.td | 383 bit isTarget = false;
|