Home
last modified time | relevance | path

Searched refs:C2Ext (Results 1 – 1 of 1) sorted by relevance

/openbsd-src/gnu/llvm/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp5680 APInt C2Ext = C2.sext(FullWidth); in FoldValue() local
5681 return (C1Ext * C2Ext).extractBits(C1.getBitWidth(), C1.getBitWidth()); in FoldValue()
5686 APInt C2Ext = C2.zext(FullWidth); in FoldValue() local
5687 return (C1Ext * C2Ext).extractBits(C1.getBitWidth(), C1.getBitWidth()); in FoldValue()
5692 APInt C2Ext = C2.sext(FullWidth); in FoldValue() local
5693 return (C1Ext + C2Ext).extractBits(C1.getBitWidth(), 1); in FoldValue()
5698 APInt C2Ext = C2.zext(FullWidth); in FoldValue() local
5699 return (C1Ext + C2Ext).extractBits(C1.getBitWidth(), 1); in FoldValue()
5704 APInt C2Ext = C2.sext(FullWidth); in FoldValue() local
5705 return (C1Ext + C2Ext + 1).extractBits(C1.getBitWidth(), 1); in FoldValue()
[all …]