OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:N2C
(Results
1 - 5
of
5
) sorted by relevancy
/src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
SelectionDAG.cpp
2256
if (ConstantSDNode *
N2C
= dyn_cast<ConstantSDNode>(N2)) {
2257
const APInt &C2 =
N2C
->getAPIntValue();
5486
ConstantSDNode *
N2C
= dyn_cast<ConstantSDNode>(N2);
5492
if (N1C && !
N2C
) {
5493
std::swap(N1C,
N2C
);
5530
if (
N2C
&&
N2C
->isNullValue())
5532
if (
N2C
&&
N2C
->isAllOnesValue()) // X & -1 -> X
5544
if (
N2C
&& N2C->isNullValue()
[
all
...]
DAGCombiner.cpp
22151
auto *
N2C
= dyn_cast<ConstantSDNode>(N2.getNode());
22152
if (
N2C
&& ((
N2C
->getAPIntValue() & (
N2C
->getAPIntValue() - 1)) == 0)) {
22153
unsigned ShCt = XType.getSizeInBits() -
N2C
->getAPIntValue().logBase2() - 1;
22299
auto *
N2C
= dyn_cast<ConstantSDNode>(N2.getNode());
22352
bool Fold =
N2C
&& isNullConstant(N3) &&
N2C
->getAPIntValue().isPowerOf2();
22362
std::swap(
N2C
, N3C);
22367
if (NotExtCompare &&
N2C
->isOne()
[
all
...]
/src/external/apache2/llvm/dist/llvm/lib/Target/ARM/
ARMISelDAGToDAG.cpp
3684
ConstantSDNode *
N2C
= dyn_cast<ConstantSDNode>(N2);
3685
if (!
N2C
)
3688
unsigned N2CVal =
N2C
->getZExtValue();
/src/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/
PPCISelDAGToDAG.cpp
5416
if (ConstantSDNode *
N2C
= dyn_cast<ConstantSDNode>(N->getOperand(2)))
5419
N2C
->getZExtValue() == 1ULL && CC == ISD::SETNE &&
/src/external/apache2/llvm/dist/llvm/lib/Target/X86/
X86ISelLowering.cpp
18904
auto *
N2C
= dyn_cast<ConstantSDNode>(N2);
18906
if (!
N2C
) {
18931
if (
N2C
->getAPIntValue().uge(NumElts))
18933
uint64_t IdxVal =
N2C
->getZExtValue();
[
all
...]
Completed in 97 milliseconds
Indexes created Tue Feb 24 08:35:24 UTC 2026