OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:ShTy
(Results
1 - 3
of
3
) sorted by relevancy
/src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
LegalizeIntegerTypes.cpp
2268
EVT
ShTy
= N->getOperand(1).getValueType();
2276
NVT, InL, DAG.getConstant(Amt - NVTBits, DL,
ShTy
));
2281
Lo = DAG.getNode(ISD::SHL, DL, NVT, InL, DAG.getConstant(Amt, DL,
ShTy
));
2284
DAG.getConstant(Amt, DL,
ShTy
)),
2286
DAG.getConstant(-Amt + NVTBits, DL,
ShTy
)));
2296
NVT, InH, DAG.getConstant(Amt - NVTBits, DL,
ShTy
));
2304
DAG.getConstant(Amt, DL,
ShTy
)),
2306
DAG.getConstant(-Amt + NVTBits, DL,
ShTy
)));
2307
Hi = DAG.getNode(ISD::SRL, DL, NVT, InH, DAG.getConstant(Amt, DL,
ShTy
));
2315
DAG.getConstant(NVTBits - 1, DL,
ShTy
));
[
all
...]
TargetLowering.cpp
1483
EVT
ShTy
= getShiftAmountTy(InnerVT, DL);
1484
if (!APInt(BitWidth, ShAmt).isIntN(
ShTy
.getSizeInBits()))
1485
ShTy
= InnerVT;
1488
TLO.DAG.getConstant(ShAmt, dl,
ShTy
));
/src/external/apache2/llvm/dist/llvm/lib/CodeGen/GlobalISel/
LegalizerHelper.cpp
5409
LLT
ShTy
= MRI.getType(Z);
5422
auto Zero = MIRBuilder.buildConstant(
ShTy
, 0);
5427
auto One = MIRBuilder.buildConstant(
ShTy
, 1);
5436
Z = MIRBuilder.buildNot(
ShTy
, Z).getReg(0);
5451
LLT
ShTy
= MRI.getType(Z);
5464
auto BitWidthC = MIRBuilder.buildConstant(
ShTy
, BW);
5465
ShAmt = MIRBuilder.buildURem(
ShTy
, Z, BitWidthC).getReg(0);
5466
InvShAmt = MIRBuilder.buildSub(
ShTy
, BitWidthC, ShAmt).getReg(0);
5472
auto Mask = MIRBuilder.buildConstant(
ShTy
, BW - 1);
5475
ShAmt = MIRBuilder.buildAnd(
ShTy
, Z, Mask).getReg(0)
[
all
...]
Completed in 41 milliseconds
Indexes created Sun Aug 09 00:24:28 UTC 2026