Home
last modified time | relevance | path

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

/freebsd-14.2/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-14.2/contrib/llvm-project/llvm/lib/MC/
H A DELFObjectWriter.cpp984 if (uint32_t RType = in writeRelocations() local
988 ERE32.setSymbolAndType(0, RType); in writeRelocations()
992 if (uint32_t RType = in writeRelocations() local
996 ERE32.setSymbolAndType(0, RType); in writeRelocations()
/freebsd-14.2/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-14.2/contrib/llvm-project/clang/lib/Sema/
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.cpp670 if (const RecordType *RType = ILE->getType()->getAs<RecordType>()) in FillInEmptyInitForField() local
671 if (!RType->getDecl()->isUnion()) in FillInEmptyInitForField()
792 if (const RecordType *RType = ILE->getType()->getAs<RecordType>()) { in FillInEmptyInitializations() local
793 const RecordDecl *RDecl = RType->getDecl(); in FillInEmptyInitializations()
/freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/
H A DCGExprCXX.cpp1228 if (const RecordType *RType = ILE->getType()->getAs<RecordType>()) { in EmitNewArrayInitializer() local
1229 if (RType->getDecl()->isStruct()) { in EmitNewArrayInitializer()
1231 if (auto *CXXRD = dyn_cast<CXXRecordDecl>(RType->getDecl())) in EmitNewArrayInitializer()
1233 for (auto *Field : RType->getDecl()->fields()) in EmitNewArrayInitializer()
/freebsd-14.2/contrib/llvm-project/llvm/lib/TableGen/
H A DTGParser.cpp2567 RecTy *RType = resolveTypes(Type, VTy); in ParseOperationCond() local
2568 if (!RType) { in ParseOperationCond()
2573 Type = RType; in ParseOperationCond()
/freebsd-14.2/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-14.2/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DTargetLowering.cpp10603 EVT RType = Node->getValueType(1); in expandMULO() local
10604 if (RType.bitsLT(Overflow.getValueType())) in expandMULO()
10605 Overflow = DAG.getNode(ISD::TRUNCATE, dl, RType, Overflow); in expandMULO()
10607 assert(RType.getSizeInBits() == Overflow.getValueSizeInBits() && in expandMULO()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Analysis/
H A DScalarEvolution.cpp683 SCEVTypes LType = LHS->getSCEVType(), RType = RHS->getSCEVType(); in CompareSCEVComplexity() local
684 if (LType != RType) in CompareSCEVComplexity()
685 return (int)LType - (int)RType; in CompareSCEVComplexity()