Home
last modified time | relevance | path

Searched refs:RType (Results 1 – 12 of 12) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMicroMipsSizeReduction.cpp96 ReduceEntry(enum ReduceType RType, struct OpCodes Op, in ReduceEntry()
99 : eRType(RType), ReduceFunction(F), Ops(Op), OpInf(OpInf), Imm(Imm) {} in ReduceEntry()
110 enum ReduceType RType() const { return eRType; } in RType() function
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaTemplateDeductionGuide.cpp1047 auto RType = F->getTemplatedDecl()->getReturnType(); in BuildDeductionGuideForTypeAlias() local
1050 RType->getAs<TemplateSpecializationType>(); in BuildDeductionGuideForTypeAlias()
1051 if (const auto *InjectedCNT = RType->getAs<InjectedClassNameType>()) in BuildDeductionGuideForTypeAlias()
1054 else if (const auto *ET = RType->getAs<ElaboratedType>()) in BuildDeductionGuideForTypeAlias()
H A DOpenCLBuiltins.td514 foreach RType = [Float, Double, Half, Char, UChar, Short,
519 foreach sat = !cond(!eq(RType.Name, "float") : [""],
520 !eq(RType.Name, "double") : [""],
521 !eq(RType.Name, "half") : [""],
524 def : Builtin<"convert_" # RType.Name # sat # rnd, [RType, IType],
527 def : Builtin<"convert_" # RType.Name # v # sat # rnd,
528 [VectorType<RType, v>, VectorType<IType, v>],
H A DSemaInit.cpp778 if (const RecordType *RType = ILE->getType()->getAs<RecordType>()) in FillInEmptyInitForField() local
779 if (!RType->getDecl()->isUnion()) in FillInEmptyInitForField()
925 if (const RecordType *RType = ILE->getType()->getAs<RecordType>()) { in FillInEmptyInitializations() local
926 const RecordDecl *RDecl = RType->getDecl(); in FillInEmptyInitializations()
/freebsd/contrib/llvm-project/llvm/lib/MC/
H A DELFObjectWriter.cpp838 if (uint32_t RType = in writeRelocations() local
841 ERE32.setSymbolAndType(0, RType); in writeRelocations()
845 if (uint32_t RType = in writeRelocations() local
848 ERE32.setSymbolAndType(0, RType); in writeRelocations()
/freebsd/contrib/llvm-project/llvm/lib/Object/
H A DMachOObjectFile.cpp2279 uint64_t RType = getRelocationType(Rel); in getRelocationTypeName() local
2293 if (RType > 5) in getRelocationTypeName()
2296 res = Table[RType]; in getRelocationTypeName()
2312 if (RType > 9) in getRelocationTypeName()
2315 res = Table[RType]; in getRelocationTypeName()
2331 if (RType > 9) in getRelocationTypeName()
2334 res = Table[RType]; in getRelocationTypeName()
2348 if (RType >= std::size(Table)) in getRelocationTypeName()
2351 res = Table[RType]; in getRelocationTypeName()
2373 if (RType > 15) in getRelocationTypeName()
[all …]
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGExprCXX.cpp1239 if (const RecordType *RType = ILE->getType()->getAs<RecordType>()) { in EmitNewArrayInitializer() local
1240 if (RType->getDecl()->isStruct()) { in EmitNewArrayInitializer()
1242 if (auto *CXXRD = dyn_cast<CXXRecordDecl>(RType->getDecl())) in EmitNewArrayInitializer()
1244 for (auto *Field : RType->getDecl()->fields()) in EmitNewArrayInitializer()
/freebsd/contrib/llvm-project/llvm/lib/TableGen/
H A DTGParser.cpp2653 const RecTy *RType = resolveTypes(Type, VTy); in ParseOperationCond() local
2654 if (!RType) { in ParseOperationCond()
2659 Type = RType; in ParseOperationCond()
/freebsd/contrib/llvm-project/llvm/tools/llvm-objdump/
H A DMachODump.cpp453 unsigned RType = Obj->getAnyRelocationType(RENext); in getMachORelocationValueString() local
454 if (RType != MachO::X86_64_RELOC_UNSIGNED) in getMachORelocationValueString()
501 unsigned RType = Obj->getAnyRelocationType(RENext); in getMachORelocationValueString() local
503 if (RType != MachO::GENERIC_RELOC_PAIR) in getMachORelocationValueString()
523 unsigned RType = Obj->getAnyRelocationType(RENext); in getMachORelocationValueString() local
524 if (RType != MachO::GENERIC_RELOC_PAIR) in getMachORelocationValueString()
563 unsigned RType = Obj->getAnyRelocationType(RENext); in getMachORelocationValueString() local
564 if (RType != MachO::ARM_RELOC_PAIR) in getMachORelocationValueString()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DSLPVectorizer.cpp23030 auto [RType, IsSigned] = R.getRootNodeTypeWithNoCast().value_or( in getReductionCost()
23032 if (RType == RedTy) { in getReductionCost()
23038 getWidenedType(RType, ReduxWidth), FMF, CostKind); in getReductionCost()
23043 auto [RType, IsSigned] = R.getRootNodeTypeWithNoCast().value_or( in getReductionCost()
23045 VectorType *RVecTy = getWidenedType(RType, ReduxWidth); in getReductionCost()
23048 if (RType != RedTy) { in getReductionCost()
23050 if (RedTy->getScalarSizeInBits() > RType->getScalarSizeInBits()) in getReductionCost()
23078 auto [RType, IsSigned] = R.getRootNodeTypeWithNoCast().value_or( in getReductionCost()
23080 VectorType *RVecTy = getWidenedType(RType, ReduxWidth); in getReductionCost()
23083 if (RType != RedTy) { in getReductionCost()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DTargetLowering.cpp11530 EVT RType = Node->getValueType(1); in expandMULO() local
11531 if (RType.bitsLT(Overflow.getValueType())) in expandMULO()
11532 Overflow = DAG.getNode(ISD::TRUNCATE, dl, RType, Overflow); in expandMULO()
11534 assert(RType.getSizeInBits() == Overflow.getValueSizeInBits() && in expandMULO()
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DScalarEvolution.cpp664 SCEVTypes LType = LHS->getSCEVType(), RType = RHS->getSCEVType(); in CompareSCEVComplexity() local
665 if (LType != RType) in CompareSCEVComplexity()
666 return (int)LType - (int)RType; in CompareSCEVComplexity()