OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SplatUndef
(Results
1 - 13
of
13
) sorted by relevancy
/src/external/apache2/llvm/dist/llvm/lib/Target/Mips/
MipsISelDAGToDAG.cpp
236
APInt SplatValue,
SplatUndef
;
240
if (!BVN->isConstantSplat(SplatValue,
SplatUndef
, SplatBitSize, HasAnyUndefs,
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/SystemZ/
SystemZISelLowering.h
714
APInt
SplatUndef
; // Bits correspoding to undef operands of the BVN.
SystemZISelLowering.cpp
775
uint64_t SplatUndefZ =
SplatUndef
.getZExtValue();
810
SplatUndef
= 0;
819
BVN->isConstantSplat(IntBits,
SplatUndef
, SplatBitSize, HasAnyUndefs, 128,
823
BVN->isConstantSplat(SplatBits,
SplatUndef
, SplatBitSize, HasAnyUndefs, 8,
5322
APInt SplatBits,
SplatUndef
;
5327
if (BVN->isConstantSplat(SplatBits,
SplatUndef
, SplatBitSize, HasAnyUndefs,
/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
...]
/src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
SelectionDAG.cpp
159
APInt
SplatUndef
;
163
return BV->isConstantSplat(SplatVal,
SplatUndef
, SplatBitSize, HasUndefs,
10202
bool BuildVectorSDNode::isConstantSplat(APInt &SplatValue, APInt &
SplatUndef
,
10216
SplatUndef
= APInt(VecWidth, 0);
10219
// of the vector is an ISD::UNDEF value) are set in
SplatUndef
and cleared
10232
SplatUndef
.setBits(BitPos, BitPos + EltWidth);
10243
HasAnyUndefs = (
SplatUndef
!= 0);
10250
APInt HighUndef =
SplatUndef
.lshr(HalfSize).trunc(HalfSize);
10251
APInt LowUndef =
SplatUndef
.trunc(HalfSize);
10259
SplatUndef
= HighUndef & LowUndef
[
all
...]
DAGCombiner.cpp
5719
APInt SplatValue,
SplatUndef
;
5722
bool IsSplat = Vector->isConstantSplat(SplatValue,
SplatUndef
,
5727
SplatValue |=
SplatUndef
;
/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/include/llvm/CodeGen/
SelectionDAGNodes.h
1927
/// that value are zero, and the corresponding bits in the
SplatUndef
mask
1931
bool isConstantSplat(APInt &SplatValue, APInt &
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/PowerPC/
PPCISelLowering.cpp
9138
uint64_t
SplatUndef
= APSplatUndef.getZExtValue();
9205
if (SplatSize == 4 && SplatBits == (0x7FFFFFFF&~
SplatUndef
)) {
/src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGBuiltin.cpp
8836
auto *
SplatUndef
= UndefValue::get(Ty);
8837
Ops.insert(Ops.begin(),
SplatUndef
);
Completed in 209 milliseconds
Indexes created Tue Feb 24 08:35:24 UTC 2026