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

/freebsd-10.2-release/contrib/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.cpp2902 static bool isNeonModifiedImm(uint64_t SplatBits, uint64_t SplatUndef, argument
2912 assert((SplatBits & ~0xff) == 0 && "one byte splat value is too big");
2915 Imm = SplatBits;
2922 if ((SplatBits & ~0xff) == 0) {
2927 Imm = SplatBits;
2931 if ((SplatBits & ~0xff00) == 0) {
2936 Imm = SplatBits >> 8;
2949 if ((SplatBits & ~0xff) == 0) {
2954 Imm = SplatBits;
2958 if ((SplatBits
3472 APInt SplatBits, SplatUndef; local
3929 APInt SplatBits, SplatUndef; local
[all...]
/freebsd-10.2-release/contrib/llvm/lib/Target/ARM/
H A DARMISelLowering.cpp4303 static SDValue isNEONModifiedImm(uint64_t SplatBits, uint64_t SplatUndef, argument
4313 if (SplatBits == 0)
4321 assert((SplatBits & ~0xff) == 0 && "one byte splat value is too big");
4323 Imm = SplatBits;
4330 if ((SplatBits & ~0xff) == 0) {
4333 Imm = SplatBits;
4336 if ((SplatBits & ~0xff00) == 0) {
4339 Imm = SplatBits >> 8;
4350 if ((SplatBits & ~0xff) == 0) {
4353 Imm = SplatBits;
4789 APInt SplatBits, SplatUndef; local
9707 APInt SplatBits, SplatUndef; local
[all...]
/freebsd-10.2-release/contrib/llvm/lib/Target/PowerPC/
H A DPPCISelLowering.cpp5236 unsigned SplatBits = APSplatBits.getZExtValue(); local
5243 if (SplatBits == 0) {
5254 int32_t SextVal= (int32_t(SplatBits << (32-SplatBitSize)) >>
5283 if (SplatSize == 4 && SplatBits == (0x7FFFFFFF&~SplatUndef)) {

Completed in 102 milliseconds