HomeSort by: relevance | last modified time | path
    Searched defs:RHSTy (Results 1 - 5 of 5) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/TableGen/
TGParser.cpp 1463 RecTy *RHSTy = nullptr;
1473 RHSTy = RHSt->getType();
1475 RHSTy = BitsRecTy::get(RHSbits->getNumBits());
1477 RHSTy = BitRecTy::get();
1481 MHSTy = RHSTy;
1483 RHSTy = MHSTy;
1485 if (!MHSTy || !RHSTy) {
1490 Type = resolveTypes(MHSTy, RHSTy);
1493 "' and '" + RHSTy->getAsString() + "' for !if");
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGExprScalar.cpp 204 QualType RHSTy = *OptionalRHSTy;
209 !LHSTy->isUnsignedIntegerType() || !RHSTy->isUnsignedIntegerType())
216 (2 * Ctx.getTypeSize(RHSTy)) < PromotedSize;
3623 QualType LHSTy, RHSTy;
3625 RHSTy = BinOp->getRHS()->getType();
3637 RHSTy = UnOp->getSubExpr()->getType();
3644 auto RHSFixedSema = Ctx.getFixedPointSemantics(RHSTy);
4004 QualType RHSTy = E->getRHS()->getType();
4012 } else if (!LHSTy->isAnyComplexType() && !RHSTy->isAnyComplexType()) {
4117 if (RHSTy.mayBeDynamicClass()
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaChecking.cpp 2241 QualType RHSTy = RHS.get()->getType();
2257 if (DiagnoseAssignmentResult(ConvTy, Arg->getBeginLoc(), LHSTy, RHSTy,
SemaExpr.cpp 1388 QualType RHSTy) {
1389 assert((LHSTy->isFixedPointType() || RHSTy->isFixedPointType()) &&
1392 RHSTy->isFixedPointOrIntegerType()) &&
1400 if (RHSTy->isSignedFixedPointType() && LHSTy->isUnsignedFixedPointType())
1402 else if (RHSTy->isUnsignedFixedPointType() && LHSTy->isSignedFixedPointType())
1403 RHSTy = S.Context.getCorrespondingSignedFixedPointType(RHSTy);
1414 unsigned RHSTyRank = GetFixedPointRank(RHSTy);
1416 QualType ResultTy = LHSTyRank > RHSTyRank ? LHSTy : RHSTy;
1418 if (LHSTy->isSaturatedFixedPointType() || RHSTy->isSaturatedFixedPointType()
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/
AArch64ISelLowering.cpp 13151 MVT RHSTy = RHS.getValueType().getSimpleVT();
13153 if (!RHSTy.isVector())
13159 MVT ConcatTy = MVT::getVectorVT(RHSTy.getVectorElementType(),
13160 RHSTy.getVectorNumElements() * 2);
13163 DAG.getNode(ISD::BITCAST, dl, RHSTy, N0),

Completed in 101 milliseconds