Home
last modified time | relevance | path

Searched refs:ValConst (Results 1 – 7 of 7) sorted by relevance

/external/llvm/lib/Target/Hexagon/
DHexagonISelDAGToDAG.cpp744 int32_t ValConst = MulConst << ShlConst; in SelectSHL() local
745 SDValue Val = CurDAG->getTargetConstant(ValConst, dl, in SelectSHL()
772 int32_t ValConst = 1 << (ShlConst+Shl2Const); in SelectSHL() local
773 SDValue Val = CurDAG->getTargetConstant(-ValConst, dl, in SelectSHL()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/
DHexagonISelDAGToDAG.cpp587 int32_t ValConst = C->getSExtValue() << ShlConst; in SelectSHL() local
588 if (isInt<9>(ValConst)) { in SelectSHL()
589 SDValue Val = CurDAG->getTargetConstant(ValConst, dl, MVT::i32); in SelectSHL()
608 int32_t ValConst = 1 << (ShlConst + C2->getSExtValue()); in SelectSHL() local
609 if (isInt<9>(-ValConst)) { in SelectSHL()
610 SDValue Val = CurDAG->getTargetConstant(-ValConst, dl, MVT::i32); in SelectSHL()
/external/llvm-project/llvm/lib/Target/Hexagon/
DHexagonISelDAGToDAG.cpp587 int32_t ValConst = C->getSExtValue() << ShlConst; in SelectSHL() local
588 if (isInt<9>(ValConst)) { in SelectSHL()
589 SDValue Val = CurDAG->getTargetConstant(ValConst, dl, MVT::i32); in SelectSHL()
608 int32_t ValConst = 1 << (ShlConst + C2->getSExtValue()); in SelectSHL() local
609 if (isInt<9>(-ValConst)) { in SelectSHL()
610 SDValue Val = CurDAG->getTargetConstant(-ValConst, dl, MVT::i32); in SelectSHL()
/external/llvm/lib/Target/X86/
DX86FrameLowering.cpp2336 ConstantInt *ValConst = dyn_cast_or_null<ConstantInt>(NodeVal->getValue()); in getHiPELiteral() local
2337 if (ValConst && NodeName->getString() == LiteralName) { in getHiPELiteral()
2338 return ValConst->getZExtValue(); in getHiPELiteral()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/
DX86FrameLowering.cpp2542 ConstantInt *ValConst = dyn_cast_or_null<ConstantInt>(NodeVal->getValue()); in getHiPELiteral() local
2543 if (ValConst && NodeName->getString() == LiteralName) { in getHiPELiteral()
2544 return ValConst->getZExtValue(); in getHiPELiteral()
/external/llvm-project/llvm/lib/Target/X86/
DX86FrameLowering.cpp2882 ConstantInt *ValConst = dyn_cast_or_null<ConstantInt>(NodeVal->getValue()); in getHiPELiteral() local
2883 if (ValConst && NodeName->getString() == LiteralName) { in getHiPELiteral()
2884 return ValConst->getZExtValue(); in getHiPELiteral()
/external/swiftshader/third_party/subzero/src/
DIceTargetLoweringX86BaseImpl.h5339 const auto *ValConst = llvm::dyn_cast<const ConstantInteger32>(Val);
5341 const bool IsValConst = ValConst != nullptr;
5343 const uint32_t ValValue = IsValConst ? ValConst->getValue() : 0;