Home
last modified time | relevance | path

Searched refs:DestTypes (Results 1 – 5 of 5) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DTypeStreamMerger.cpp79 MergingTypeTableBuilder &DestTypes,
90 GlobalTypeTableBuilder &DestTypes,
261 MergingTypeTableBuilder &DestIds, MergingTypeTableBuilder &DestTypes, in mergeTypesAndIds() argument
264 DestTypeStream = &DestTypes; in mergeTypesAndIds()
297 GlobalTypeTableBuilder &DestIds, GlobalTypeTableBuilder &DestTypes, in mergeTypesAndIds() argument
301 DestGlobalTypeStream = &DestTypes; in mergeTypesAndIds()
446 MergingTypeTableBuilder &DestIds, MergingTypeTableBuilder &DestTypes, in mergeTypeAndIdRecords() argument
450 return M.mergeTypesAndIds(DestIds, DestTypes, IdsAndTypes, PCHInfo); in mergeTypeAndIdRecords()
454 GlobalTypeTableBuilder &DestIds, GlobalTypeTableBuilder &DestTypes, in mergeTypeAndIdRecords() argument
459 return M.mergeTypesAndIds(DestIds, DestTypes, IdsAndTypes, Hashes, PCHInfo); in mergeTypeAndIdRecords()
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DTypeStreamMerger.h92 MergingTypeTableBuilder &DestTypes,
98 GlobalTypeTableBuilder &DestTypes,
/freebsd/contrib/llvm-project/llvm/lib/Target/WebAssembly/AsmParser/
H A DWebAssemblyAsmTypeCheck.cpp373 ArrayRef<wasm::ValType> DestTypes; in checkTryTable() local
375 DestTypes = DestBlockInfo.Sig.Params; in checkTryTable()
377 DestTypes = DestBlockInfo.Sig.Returns; in checkTryTable()
378 if (compareTypes(SentTypes, DestTypes)) { in checkTryTable()
382 getTypesString(DestTypes); in checkTryTable()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaHLSL.cpp3408 llvm::SmallVector<QualType> DestTypes; in CanPerformAggregateSplatCast() local
3409 BuildFlattenedTypeList(DestTy, DestTypes); in CanPerformAggregateSplatCast()
3411 for (unsigned I = 0, Size = DestTypes.size(); I < Size; ++I) { in CanPerformAggregateSplatCast()
3412 if (DestTypes[I]->isUnionType()) in CanPerformAggregateSplatCast()
3414 if (!CanPerformScalarCast(SrcTy, DestTypes[I])) in CanPerformAggregateSplatCast()
3437 llvm::SmallVector<QualType> DestTypes; in CanPerformElementwiseCast() local
3438 BuildFlattenedTypeList(DestTy, DestTypes); in CanPerformElementwiseCast()
3444 if (SrcTypes.size() < DestTypes.size()) in CanPerformElementwiseCast()
3448 unsigned DstSize = DestTypes.size(); in CanPerformElementwiseCast()
3451 if (SrcTypes[I]->isUnionType() || DestTypes[I]->isUnionType()) in CanPerformElementwiseCast()
[all …]
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGExprAgg.cpp499 SmallVector<QualType> DestTypes; // Flattened type in EmitHLSLAggregateSplatCast() local
502 CGF.FlattenAccessAndType(DestVal, DestTy, StoreGEPList, DestTypes); in EmitHLSLAggregateSplatCast()
507 CGF.EmitScalarConversion(SrcVal, SrcTy, DestTypes[I], Loc); in EmitHLSLAggregateSplatCast()
525 SmallVector<QualType, 16> DestTypes; // Flattened type in EmitHLSLScalarFlatCast() local
528 CGF.FlattenAccessAndType(DestVal, DestTy, StoreGEPList, DestTypes); in EmitHLSLScalarFlatCast()
540 CGF.EmitScalarConversion(Load, SrcTy, DestTypes[I], Loc); in EmitHLSLScalarFlatCast()
558 SmallVector<QualType, 16> DestTypes; // Flattened type in EmitHLSLElementwiseCast() local
561 CGF.FlattenAccessAndType(DestVal, DestTy, StoreGEPList, DestTypes); in EmitHLSLElementwiseCast()
579 CGF.EmitScalarConversion(Load, SrcTypes[I], DestTypes[I], Loc); in EmitHLSLElementwiseCast()