Searched refs:SplatBits (Results 1 - 3 of 3) sorted by relevance

/macosx-10.9.5/llvmCore-3425.0.33/lib/Target/ARM/
H A DARMISelLowering.cpp3728 static SDValue isNEONModifiedImm(uint64_t SplatBits, uint64_t SplatUndef, argument
3738 if (SplatBits == 0)
3746 assert((SplatBits & ~0xff) == 0 && "one byte splat value is too big");
3748 Imm = SplatBits;
3755 if ((SplatBits & ~0xff) == 0) {
3758 Imm = SplatBits;
3761 if ((SplatBits & ~0xff00) == 0) {
3764 Imm = SplatBits >> 8;
3775 if ((SplatBits & ~0xff) == 0) {
3778 Imm = SplatBits;
4140 APInt SplatBits, SplatUndef; local
8557 APInt SplatBits, SplatUndef; local
[all...]
/macosx-10.9.5/llvmCore-3425.0.33/lib/Target/CellSPU/
H A DSPUISelLowering.cpp1678 uint64_t SplatBits = APSplatBits.getZExtValue();
1686 uint32_t Value32 = uint32_t(SplatBits);
1695 uint64_t f64val = uint64_t(SplatBits);
1705 unsigned short Value16 = SplatBits /* | (SplatBits << 8) */;
1713 unsigned short Value16 = SplatBits;
1721 SDValue T = DAG.getConstant(unsigned(SplatBits), VT.getVectorElementType());
1725 return SPU::LowerV2I64Splat(VT, DAG, SplatBits, dl);
2334 uint64_t SplatBits = APSplatBits.getZExtValue(); local
2335 SDValue tc = DAG.getTargetConstant(SplatBits
[all...]
/macosx-10.9.5/llvmCore-3425.0.33/lib/Target/PowerPC/
H A DPPCISelLowering.cpp4195 unsigned SplatBits = APSplatBits.getZExtValue(); local
4202 if (SplatBits == 0) {
4213 int32_t SextVal= (int32_t(SplatBits << (32-SplatBitSize)) >>
4232 if (SplatSize == 4 && SplatBits == (0x7FFFFFFF&~SplatUndef)) {

Completed in 179 milliseconds