OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CastOpc
(Results
1 - 6
of
6
) sorted by relevancy
/src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
InstructionSimplify.h
255
Value *SimplifyCastInst(unsigned
CastOpc
, Value *Op, Type *Ty,
/src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/GlobalISel/
LegalizationArtifactCombiner.h
359
const unsigned
CastOpc
= CastMI.getOpcode();
361
if (!isArtifactCast(
CastOpc
))
374
if (
CastOpc
== TargetOpcode::G_TRUNC) {
/src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
InstructionCombining.cpp
1779
CastInst::CastOps
CastOpc
= IsSext ? Instruction::SExt : Instruction::ZExt;
1782
cast<Operator>(Op1)->getOpcode() ==
CastOpc
&&
1790
if (ConstantExpr::getCast(
CastOpc
, NarrowC, BO.getType()) != WideC)
1813
return CastInst::Create(
CastOpc
, NarrowBO, BO.getType());
/src/external/apache2/llvm/dist/llvm/lib/Analysis/
InstructionSimplify.cpp
4549
static Value *SimplifyCastInst(unsigned
CastOpc
, Value *Op,
4552
return ConstantFoldCastOperand(
CastOpc
, C, Ty, Q.DL);
4561
auto SecondOp = static_cast<Instruction::CastOps>(
CastOpc
);
4576
if (
CastOpc
== Instruction::BitCast)
4583
Value *llvm::SimplifyCastInst(unsigned
CastOpc
, Value *Op, Type *Ty,
4585
return ::SimplifyCastInst(
CastOpc
, Op, Ty, Q, RecursionLimit);
/src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/
AArch64ISelLowering.cpp
3365
unsigned
CastOpc
= IsSigned ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND;
3367
In = DAG.getNode(
CastOpc
, dl, CastVT, In);
3387
unsigned
CastOpc
= IsSigned ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND;
3389
In = DAG.getNode(
CastOpc
, dl, CastVT, In);
/src/external/apache2/llvm/dist/llvm/lib/Target/ARM/
ARMISelLowering.cpp
5689
unsigned
CastOpc
;
5694
CastOpc
= ISD::SIGN_EXTEND;
5698
CastOpc
= ISD::ZERO_EXTEND;
5703
Op = DAG.getNode(
CastOpc
, dl, DestVecType, Op.getOperand(0));
Completed in 121 milliseconds
Indexes created Wed Aug 05 00:25:39 UTC 2026