Searched defs:ExtendKind (Results 1 - 2 of 2) sorted by relevance

/external/llvm/lib/CodeGen/
H A DTargetLoweringBase.cpp1133 ISD::NodeType ExtendKind = ISD::ANY_EXTEND; local
1136 ExtendKind = ISD::SIGN_EXTEND;
1138 ExtendKind = ISD::ZERO_EXTEND;
1144 if (ExtendKind != ISD::ANY_EXTEND && VT.isInteger()) {
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.cpp337 /// integers, ExtendKind can be used to specify how to generate the extra bits.
341 ISD::NodeType ExtendKind = ISD::ANY_EXTEND) {
374 Val = DAG.getNode(ExtendKind, DL, ValueVT, Val);
788 ISD::NodeType ExtendKind = local
792 &Parts[Part], NumParts, RegisterVT, V, ExtendKind);
1237 ISD::NodeType ExtendKind = ISD::ANY_EXTEND; local
1242 ExtendKind = ISD::SIGN_EXTEND;
1245 ExtendKind = ISD::ZERO_EXTEND;
1247 if (ExtendKind != ISD::ANY_EXTEND && VT.isInteger())
1248 VT = TLI->getTypeForExtArgOrReturn(VT.getSimpleVT(), ExtendKind);
6498 ISD::NodeType ExtendKind = ISD::ANY_EXTEND; local
[all...]

Completed in 68 milliseconds