HomeSort by: relevance | last modified time | path
    Searched defs:SplatUndef (Results 1 - 8 of 8) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Target/SystemZ/
SystemZISelLowering.h 714 APInt SplatUndef; // Bits correspoding to undef operands of the BVN.
  /src/external/apache2/llvm/dist/llvm/lib/Target/Mips/
MipsSEISelDAGToDAG.cpp 521 APInt SplatValue, SplatUndef;
525 if (!Node->isConstantSplat(SplatValue, SplatUndef, SplatBitSize, HasAnyUndefs,
1057 APInt SplatValue, SplatUndef;
1067 if (!BVN->isConstantSplat(SplatValue, SplatUndef, SplatBitSize,
MipsSEISelLowering.cpp 540 APInt SplatValue, SplatUndef;
544 if (!Node->isConstantSplat(SplatValue, SplatUndef, SplatBitSize, HasAnyUndefs,
565 APInt SplatValue, SplatUndef;
571 if (BVN->isConstantSplat(SplatValue, SplatUndef, SplatBitSize, HasAnyUndefs))
849 APInt SplatValue, SplatUndef;
859 !BV->isConstantSplat(SplatValue, SplatUndef, SplatBitSize, HasAnyUndefs,
2464 APInt SplatValue, SplatUndef;
2471 if (Node->isConstantSplat(SplatValue, SplatUndef, SplatBitSize,
  /src/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/
WebAssemblyISelLowering.cpp 2218 APInt SplatValue, SplatUndef;
2221 if (!Splat || !Splat->isConstantSplat(SplatValue, SplatUndef, SplatBitSize,
  /src/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/
PPCISelLowering.cpp 9138 uint64_t SplatUndef = APSplatUndef.getZExtValue();
9205 if (SplatSize == 4 && SplatBits == (0x7FFFFFFF&~SplatUndef)) {
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
DAGCombiner.cpp 5719 APInt SplatValue, SplatUndef;
5722 bool IsSplat = Vector->isConstantSplat(SplatValue, SplatUndef,
5727 SplatValue |= SplatUndef;
  /src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/
AArch64ISelLowering.cpp 9273 APInt SplatBits, SplatUndef;
9276 if (BVN->isConstantSplat(SplatBits, SplatUndef, SplatBitSize, HasAnyUndefs)) {
9283 UndefBits |= (SplatBits ^ SplatUndef).zextOrTrunc(VT.getSizeInBits());
10298 APInt SplatBits, SplatUndef;
10301 if (!BVN || !BVN->isConstantSplat(SplatBits, SplatUndef, SplatBitSize,
13578 APInt SplatValue, SplatUndef;
13581 if (!BVN->isConstantSplat(SplatValue, SplatUndef, SplatBitSize,
  /src/external/apache2/llvm/dist/llvm/lib/Target/ARM/
ARMISelLowering.cpp 6257 APInt SplatBits, SplatUndef;
6261 !BVN->isConstantSplat(SplatBits, SplatUndef, SplatBitSize, HasAnyUndefs,
6640 static SDValue isVMOVModifiedImm(uint64_t SplatBits, uint64_t SplatUndef,
6718 ((SplatBits | SplatUndef) & 0xff) == 0xff) {
6730 ((SplatBits | SplatUndef) & 0xffff) == 0xffff) {
6753 if (((SplatBits | SplatUndef) & BitMask) == BitMask) {
7487 APInt SplatBits, SplatUndef;
7490 if (BVN->isConstantSplat(SplatBits, SplatUndef, SplatBitSize, HasAnyUndefs)) {
7491 if (SplatUndef.isAllOnesValue())
7499 isVMOVModifiedImm(SplatBits.getZExtValue(), SplatUndef.getZExtValue()
    [all...]

Completed in 96 milliseconds