Home
last modified time | relevance | path

Searched refs:Const32 (Results 1 – 3 of 3) sorted by relevance

/external/swiftshader/third_party/subzero/src/
DIceTargetLoweringMIPS32.cpp2782 auto *Const32 = llvm::dyn_cast<ConstantInteger32>(Src1); in lowerArithmetic() local
2783 if (Const32 != nullptr && isInt<16>(int32_t(Const32->getValue()))) { in lowerArithmetic()
2785 Value = Const32->getValue(); in lowerArithmetic()
2797 auto *Const32 = llvm::dyn_cast<ConstantInteger32>(Src1); in lowerArithmetic() local
2798 if (Const32 != nullptr && llvm::isUInt<16>(uint32_t(Const32->getValue()))) { in lowerArithmetic()
2800 Value = Const32->getValue(); in lowerArithmetic()
DIceInstX86BaseImpl.h2896 } else if (const auto *Const32 = llvm::dyn_cast<ConstantInteger32>(Src)) { in emitIAS() local
2897 Asm->pushl(AssemblerImmediate(Const32->getValue())); in emitIAS()
/external/llvm/lib/Target/Mips/
DMipsISelLowering.cpp2320 SDValue Const32 = DAG.getConstant(32, DL, MVT::i32); in lowerLOAD() local
2321 SDValue SLL = DAG.getNode(ISD::SHL, DL, MVT::i64, LWR, Const32); in lowerLOAD()
2322 SDValue SRL = DAG.getNode(ISD::SRL, DL, MVT::i64, SLL, Const32); in lowerLOAD()