OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:EltBitWidth
(Results
1 - 2
of
2
) sorted by relevancy
/src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
TargetLowering.cpp
2076
unsigned
EltBitWidth
= Src.getScalarValueSizeInBits();
2088
// If BitWidth >
EltBitWidth
the value is anyext:ed. So we do not know
2091
if (BitWidth >
EltBitWidth
)
2092
DemandedSrcBits = DemandedSrcBits.trunc(
EltBitWidth
);
2110
if (BitWidth >
EltBitWidth
)
DAGCombiner.cpp
5733
unsigned
EltBitWidth
= Vector->getValueType(0).getScalarSizeInBits();
5738
if (
EltBitWidth
> SplatBitSize)
5739
for (SplatValue = SplatValue.zextOrTrunc(
EltBitWidth
);
5740
SplatBitSize <
EltBitWidth
; SplatBitSize = SplatBitSize * 2)
5745
if ((SplatBitSize %
EltBitWidth
) == 0) {
5746
Constant = APInt::getAllOnesValue(
EltBitWidth
);
5747
for (unsigned i = 0, n = (SplatBitSize /
EltBitWidth
); i < n; ++i)
5748
Constant &= SplatValue.extractBits(
EltBitWidth
, i *
EltBitWidth
);
Completed in 35 milliseconds
Indexes created Tue Sep 22 00:26:15 UTC 2026