Home
last modified time | relevance | path

Searched refs:OriginalType (Results 1 – 11 of 11) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DTypeStreamMerger.cpp136 ArrayRef<uint8_t> remapIndices(const CVType &OriginalType,
388 TypeStreamMerger::remapIndices(const CVType &OriginalType, in remapIndices() argument
390 unsigned Align = OriginalType.RecordData.size() & 3; in remapIndices()
391 assert(Storage.size() == alignTo(OriginalType.RecordData.size(), 4) && in remapIndices()
396 discoverTypeIndices(OriginalType.RecordData, Refs); in remapIndices()
398 return OriginalType.RecordData; in remapIndices()
400 ::memcpy(Storage.data(), OriginalType.RecordData.data(), in remapIndices()
401 OriginalType.RecordData.size()); in remapIndices()
423 DestContent = Storage.data() + OriginalType.RecordData.size(); in remapIndices()
/freebsd/contrib/llvm-project/llvm/lib/ObjCopy/ELF/
H A DELFObject.h518 uint64_t OriginalType = ELF::SHT_NULL; variable
637 Type = OriginalType = ELF::SHT_PROGBITS; in OwnedDataSection()
645 Type = OriginalType = ELF::SHT_PROGBITS; in OwnedDataSection()
721 Type = OriginalType = ELF::SHT_STRTAB; in StringTableSection()
733 return S->OriginalType == ELF::SHT_STRTAB; in classof()
807 Type = OriginalType = ELF::SHT_SYMTAB_SHNDX; in SectionIndexSection()
826 SymbolTableSection() { Type = OriginalType = ELF::SHT_SYMTAB; } in SymbolTableSection()
857 return S->OriginalType == ELF::SHT_SYMTAB; in classof()
889 S->OriginalType); in classof()
979 return S->OriginalType == ELF::SHT_GROUP; in classof()
[all …]
H A DELFObject.cpp1164 Type = OriginalType = ELF::SHT_PROGBITS; in init()
1804 Sec->Type = Sec->OriginalType = Shdr.sh_type; in readSectionHeaders()
/freebsd/contrib/llvm-project/llvm/lib/Target/XCore/
H A DXCoreLowerThreadLocal.cpp61 static ArrayType *createLoweredType(Type *OriginalType) { in createLoweredType() argument
62 return ArrayType::get(OriginalType, MaxThreads); in createLoweredType()
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPULateCodeGenPrepare.cpp90 Type *calculateConvertType(Type *OriginalType);
197 Type *LiveRegOptimizer::calculateConvertType(Type *OriginalType) { in calculateConvertType() argument
198 assert(OriginalType->getScalarSizeInBits() <= in calculateConvertType()
201 FixedVectorType *VTy = cast<FixedVectorType>(OriginalType); in calculateConvertType()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DMicrosoftMangle.cpp2387 QualType OriginalType = DT->getOriginalType(); in mangleFunctionArgumentType() local
2390 if (const auto *AT = getASTContext().getAsArrayType(OriginalType)) in mangleFunctionArgumentType()
2391 OriginalType = getASTContext().getIncompleteArrayType( in mangleFunctionArgumentType()
2395 TypePtr = OriginalType.getCanonicalType().getAsOpaquePtr(); in mangleFunctionArgumentType()
2401 if (OriginalType->isArrayType()) in mangleFunctionArgumentType()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DDataFlowSanitizer.cpp359 TransformedFunction(FunctionType *OriginalType, FunctionType *TransformedType, in TransformedFunction()
361 : OriginalType(OriginalType), TransformedType(TransformedType), in TransformedFunction()
373 FunctionType *OriginalType; member
407 for (unsigned I = TransformedFunction.OriginalType->getNumParams(), in transformFunctionAttributes()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGStmtOpenMP.cpp761 Address DestAddr, Address SrcAddr, QualType OriginalType, in EmitOMPAggregateAssign() argument
767 const ArrayType *ArrayTy = OriginalType->getAsArrayTypeUnsafe(); in EmitOMPAggregateAssign()
825 void CodeGenFunction::EmitOMPCopy(QualType OriginalType, Address DestAddr, in EmitOMPCopy() argument
828 if (OriginalType->isArrayType()) { in EmitOMPCopy()
832 LValue Dest = MakeAddrLValue(DestAddr, OriginalType); in EmitOMPCopy()
833 LValue Src = MakeAddrLValue(SrcAddr, OriginalType); in EmitOMPCopy()
834 EmitAggregateAssign(Dest, Src, OriginalType); in EmitOMPCopy()
839 DestAddr, SrcAddr, OriginalType, in EmitOMPCopy()
H A DCodeGenFunction.h3712 Address DestAddr, Address SrcAddr, QualType OriginalType,
3725 void EmitOMPCopy(QualType OriginalType, Address DestAddr, Address SrcAddr,
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DType.h3455 DecayedType(QualType OriginalType, QualType Decayed, QualType Canonical);
9020 DecayedType::DecayedType(QualType OriginalType, QualType DecayedPtr,
9022 : AdjustedType(Decayed, OriginalType, DecayedPtr, CanonicalPtr) {
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DTreeTransform.h5498 QualType OriginalType = getDerived().TransformType(TLB, TL.getOriginalLoc()); in TransformDecayedType() local
5499 if (OriginalType.isNull()) in TransformDecayedType()
5504 OriginalType != TL.getOriginalLoc().getType()) in TransformDecayedType()
5505 Result = SemaRef.Context.getDecayedType(OriginalType); in TransformDecayedType()
5515 QualType OriginalType = getDerived().TransformType(TLB, TL.getElementLoc()); in TransformArrayParameterType() local
5516 if (OriginalType.isNull()) in TransformArrayParameterType()
5521 OriginalType != TL.getElementLoc().getType()) in TransformArrayParameterType()
5522 Result = SemaRef.Context.getArrayParameterType(OriginalType); in TransformArrayParameterType()