Home
last modified time | relevance | path

Searched refs:RType (Results 1 – 11 of 11) 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.cpp998 auto RType = F->getTemplatedDecl()->getReturnType(); in BuildDeductionGuideForTypeAlias() local
1001 RType->getAs<TemplateSpecializationType>(); in BuildDeductionGuideForTypeAlias()
1002 if (const auto *InjectedCNT = RType->getAs<InjectedClassNameType>()) in BuildDeductionGuideForTypeAlias()
1005 else if (const auto *ET = RType->getAs<ElaboratedType>()) in BuildDeductionGuideForTypeAlias()
H A DOpenCLBuiltins.td510 foreach RType = [Float, Double, Half, Char, UChar, Short,
515 foreach sat = !cond(!eq(RType.Name, "float") : [""],
516 !eq(RType.Name, "double") : [""],
517 !eq(RType.Name, "half") : [""],
520 def : Builtin<"convert_" # RType.Name # sat # rnd, [RType, IType],
523 def : Builtin<"convert_" # RType.Name # v # sat # rnd,
524 [VectorType<RType, v>, VectorType<IType, v>],
H A DSemaInit.cpp732 if (const RecordType *RType = ILE->getType()->getAs<RecordType>()) in FillInEmptyInitForField() local
733 if (!RType->getDecl()->isUnion()) in FillInEmptyInitForField()
854 if (const RecordType *RType = ILE->getType()->getAs<RecordType>()) { in FillInEmptyInitializations() local
855 const RecordDecl *RDecl = RType->getDecl(); in FillInEmptyInitializations()
/freebsd/contrib/llvm-project/llvm/lib/MC/
H A DELFObjectWriter.cpp834 if (uint32_t RType = in writeRelocations() local
837 ERE32.setSymbolAndType(0, RType); in writeRelocations()
841 if (uint32_t RType = in writeRelocations() local
844 ERE32.setSymbolAndType(0, RType); in writeRelocations()
/freebsd/contrib/llvm-project/llvm/lib/Object/
H A DMachOObjectFile.cpp2278 uint64_t RType = getRelocationType(Rel); in getRelocationTypeName() local
2292 if (RType > 5) in getRelocationTypeName()
2295 res = Table[RType]; in getRelocationTypeName()
2311 if (RType > 9) in getRelocationTypeName()
2314 res = Table[RType]; in getRelocationTypeName()
2330 if (RType > 9) in getRelocationTypeName()
2333 res = Table[RType]; in getRelocationTypeName()
2347 if (RType >= std::size(Table)) in getRelocationTypeName()
2350 res = Table[RType]; in getRelocationTypeName()
2372 if (RType > 15) in getRelocationTypeName()
[all …]
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGExprCXX.cpp1234 if (const RecordType *RType = ILE->getType()->getAs<RecordType>()) { in EmitNewArrayInitializer() local
1235 if (RType->getDecl()->isStruct()) { in EmitNewArrayInitializer()
1237 if (auto *CXXRD = dyn_cast<CXXRecordDecl>(RType->getDecl())) in EmitNewArrayInitializer()
1239 for (auto *Field : RType->getDecl()->fields()) in EmitNewArrayInitializer()
/freebsd/contrib/llvm-project/llvm/lib/TableGen/
H A DTGParser.cpp2573 RecTy *RType = resolveTypes(Type, VTy); in ParseOperationCond() local
2574 if (!RType) { in ParseOperationCond()
2579 Type = RType; in ParseOperationCond()
/freebsd/contrib/llvm-project/llvm/tools/llvm-objdump/
H A DMachODump.cpp457 unsigned RType = Obj->getAnyRelocationType(RENext); in getMachORelocationValueString() local
458 if (RType != MachO::X86_64_RELOC_UNSIGNED) in getMachORelocationValueString()
505 unsigned RType = Obj->getAnyRelocationType(RENext); in getMachORelocationValueString() local
507 if (RType != MachO::GENERIC_RELOC_PAIR) in getMachORelocationValueString()
527 unsigned RType = Obj->getAnyRelocationType(RENext); in getMachORelocationValueString() local
528 if (RType != MachO::GENERIC_RELOC_PAIR) in getMachORelocationValueString()
567 unsigned RType = Obj->getAnyRelocationType(RENext); in getMachORelocationValueString() local
568 if (RType != MachO::ARM_RELOC_PAIR) in getMachORelocationValueString()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DTargetLowering.cpp11028 EVT RType = Node->getValueType(1); in expandMULO() local
11029 if (RType.bitsLT(Overflow.getValueType())) in expandMULO()
11030 Overflow = DAG.getNode(ISD::TRUNCATE, dl, RType, Overflow); in expandMULO()
11032 assert(RType.getSizeInBits() == Overflow.getValueSizeInBits() && in expandMULO()
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DScalarEvolution.cpp690 SCEVTypes LType = LHS->getSCEVType(), RType = RHS->getSCEVType(); in CompareSCEVComplexity() local
691 if (LType != RType) in CompareSCEVComplexity()
692 return (int)LType - (int)RType; in CompareSCEVComplexity()