OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:MulRHS
(Results
1 - 2
of
2
) sorted by relevancy
/src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/
AArch64FastISel.cpp
1227
const Value *
MulRHS
= cast<MulOperator>(RHS)->getOperand(1);
1231
std::swap(MulLHS,
MulRHS
);
1233
assert(isa<ConstantInt>(
MulRHS
) && "Expected a ConstantInt.");
1234
uint64_t ShiftVal = cast<ConstantInt>(
MulRHS
)->getValue().logBase2();
1596
const Value *
MulRHS
= cast<MulOperator>(RHS)->getOperand(1);
1600
std::swap(MulLHS,
MulRHS
);
1602
assert(isa<ConstantInt>(
MulRHS
) && "Expected a ConstantInt.");
1603
uint64_t ShiftVal = cast<ConstantInt>(
MulRHS
)->getValue().logBase2();
/src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
SIISelLowering.cpp
10363
SDValue
MulRHS
= LHS.getOperand(1);
10368
numBitsUnsigned(
MulRHS
, DAG) <= 32) {
10370
MulRHS
= DAG.getZExtOrTrunc(
MulRHS
, SL, MVT::i32);
10372
return getMad64_32(DAG, SL, VT, MulLHS,
MulRHS
, AddRHS, false);
10375
if (numBitsSigned(MulLHS, DAG) < 32 && numBitsSigned(
MulRHS
, DAG) < 32) {
10377
MulRHS
= DAG.getSExtOrTrunc(
MulRHS
, SL, MVT::i32);
10379
return getMad64_32(DAG, SL, VT, MulLHS,
MulRHS
, AddRHS, true);
Completed in 25 milliseconds
Indexes created Wed Aug 05 00:25:39 UTC 2026