Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DTypeStreamMerger.cpp135 ArrayRef<uint8_t> remapIndices(const CVType &OriginalType,
389 TypeStreamMerger::remapIndices(const CVType &OriginalType, in remapIndices() argument
391 unsigned Align = OriginalType.RecordData.size() & 3; in remapIndices()
392 assert(Storage.size() == alignTo(OriginalType.RecordData.size(), 4) && in remapIndices()
397 discoverTypeIndices(OriginalType.RecordData, Refs); in remapIndices()
399 return OriginalType.RecordData; in remapIndices()
401 ::memcpy(Storage.data(), OriginalType.RecordData.data(), in remapIndices()
402 OriginalType.RecordData.size()); in remapIndices()
424 DestContent = Storage.data() + OriginalType.RecordData.size(); in remapIndices()
/freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-objcopy/ELF/
H A DObject.h399 uint64_t OriginalType = ELF::SHT_NULL; variable
507 Type = OriginalType = ELF::SHT_PROGBITS; in OwnedDataSection()
515 Type = OriginalType = ELF::SHT_PROGBITS; in OwnedDataSection()
591 Type = OriginalType = ELF::SHT_STRTAB; in StringTableSection()
603 return S->OriginalType == ELF::SHT_STRTAB; in classof()
720 return S->OriginalType == ELF::SHT_SYMTAB; in classof()
749 return S->OriginalType == ELF::SHT_REL || S->OriginalType == ELF::SHT_RELA; in classof()
790 return S->OriginalType == ELF::SHT_REL || S->OriginalType == ELF::SHT_RELA; in classof()
829 return S->OriginalType == ELF::SHT_GROUP; in classof()
838 return S->OriginalType == ELF::SHT_DYNSYM; in classof()
[all …]
H A DObject.cpp1153 Type = OriginalType = ELF::SHT_PROGBITS; in init()
1780 Sec->Type = Sec->OriginalType = Shdr.sh_type; in readSectionHeaders()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/XCore/
H A DXCoreLowerThreadLocal.cpp65 static ArrayType *createLoweredType(Type *OriginalType) { in createLoweredType() argument
66 return ArrayType::get(OriginalType, MaxThreads); in createLoweredType()
/freebsd-13.1/contrib/llvm-project/clang/lib/AST/
H A DMicrosoftMangle.cpp2069 QualType OriginalType = DT->getOriginalType(); in mangleFunctionArgumentType() local
2072 if (const auto *AT = getASTContext().getAsArrayType(OriginalType)) in mangleFunctionArgumentType()
2073 OriginalType = getASTContext().getIncompleteArrayType( in mangleFunctionArgumentType()
2077 TypePtr = OriginalType.getCanonicalType().getAsOpaquePtr(); in mangleFunctionArgumentType()
2083 if (OriginalType->isArrayType()) in mangleFunctionArgumentType()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DDataFlowSanitizer.cpp308 TransformedFunction(FunctionType *OriginalType, FunctionType *TransformedType, in TransformedFunction()
310 : OriginalType(OriginalType), TransformedType(TransformedType), in TransformedFunction()
322 FunctionType *OriginalType; member
356 for (unsigned I = TransformedFunction.OriginalType->getNumParams(), in transformFunctionAttributes()
/freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/
H A DCGStmtOpenMP.cpp692 Address DestAddr, Address SrcAddr, QualType OriginalType, in EmitOMPAggregateAssign() argument
698 const ArrayType *ArrayTy = OriginalType->getAsArrayTypeUnsafe(); in EmitOMPAggregateAssign()
755 void CodeGenFunction::EmitOMPCopy(QualType OriginalType, Address DestAddr, in EmitOMPCopy() argument
758 if (OriginalType->isArrayType()) { in EmitOMPCopy()
762 LValue Dest = MakeAddrLValue(DestAddr, OriginalType); in EmitOMPCopy()
763 LValue Src = MakeAddrLValue(SrcAddr, OriginalType); in EmitOMPCopy()
764 EmitAggregateAssign(Dest, Src, OriginalType); in EmitOMPCopy()
769 DestAddr, SrcAddr, OriginalType, in EmitOMPCopy()
H A DCodeGenFunction.h3302 Address DestAddr, Address SrcAddr, QualType OriginalType,
3315 void EmitOMPCopy(QualType OriginalType,
/freebsd-13.1/contrib/llvm-project/clang/include/clang/AST/
H A DType.h2701 DecayedType(QualType OriginalType, QualType Decayed, QualType Canonical);
7240 DecayedType::DecayedType(QualType OriginalType, QualType DecayedPtr,
7242 : AdjustedType(Decayed, OriginalType, DecayedPtr, CanonicalPtr) {
/freebsd-13.1/contrib/llvm-project/clang/lib/Sema/
H A DTreeTransform.h4935 QualType OriginalType = getDerived().TransformType(TLB, TL.getOriginalLoc()); in TransformDecayedType() local
4936 if (OriginalType.isNull()) in TransformDecayedType()
4941 OriginalType != TL.getOriginalLoc().getType()) in TransformDecayedType()
4942 Result = SemaRef.Context.getDecayedType(OriginalType); in TransformDecayedType()