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

/external/llvm/lib/Target/PowerPC/
H A DPPCISelLowering.cpp5011 unsigned SplatBits = APSplatBits.getZExtValue(); local
5018 if (SplatBits == 0) {
5029 int32_t SextVal= (int32_t(SplatBits << (32-SplatBitSize)) >>
5058 if (SplatSize == 4 && SplatBits == (0x7FFFFFFF&~SplatUndef)) {
/external/llvm/lib/Target/ARM/
H A DARMISelLowering.cpp3904 static SDValue isNEONModifiedImm(uint64_t SplatBits, uint64_t SplatUndef, argument
3914 if (SplatBits == 0)
3922 assert((SplatBits & ~0xff) == 0 && "one byte splat value is too big");
3924 Imm = SplatBits;
3931 if ((SplatBits & ~0xff) == 0) {
3934 Imm = SplatBits;
3937 if ((SplatBits & ~0xff00) == 0) {
3940 Imm = SplatBits >> 8;
3951 if ((SplatBits & ~0xff) == 0) {
3954 Imm = SplatBits;
4361 APInt SplatBits, SplatUndef; local
8955 APInt SplatBits, SplatUndef; local
[all...]

Completed in 91 milliseconds