Home
last modified time | relevance | path

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

/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
HDTypeStreamMerger.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 unsigned AlignedSize = alignTo(OriginalType.RecordData.size(), 4); in remapIndices()
398 discoverTypeIndices(OriginalType.RecordData, Refs); in remapIndices()
400 return OriginalType.RecordData; in remapIndices()
402 ::memcpy(Storage.data(), OriginalType.RecordData.data(), in remapIndices()
403 OriginalType.RecordData.size()); in remapIndices()
425 DestContent = Storage.data() + OriginalType.RecordData.size(); in remapIndices()
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/ELF/
HDObject.h395 uint64_t OriginalType = ELF::SHT_NULL; variable
499 Type = OriginalType = ELF::SHT_PROGBITS; in OwnedDataSection()
507 Type = OriginalType = ELF::SHT_PROGBITS; in OwnedDataSection()
576 Type = OriginalType = ELF::SHT_STRTAB; in StringTableSection()
588 return S->OriginalType == ELF::SHT_STRTAB; in classof()
657 Type = OriginalType = ELF::SHT_SYMTAB_SHNDX; in SectionIndexSection()
675 SymbolTableSection() { Type = OriginalType = ELF::SHT_SYMTAB; } in SymbolTableSection()
704 return S->OriginalType == ELF::SHT_SYMTAB; in classof()
733 return S->OriginalType == ELF::SHT_REL || S->OriginalType == ELF::SHT_RELA; in classof()
773 return S->OriginalType == ELF::SHT_REL || S->OriginalType == ELF::SHT_RELA; in classof()
[all …]
HDObject.cpp1012 Type = OriginalType = ELF::SHT_PROGBITS; in init()
1524 Sec.Type = Sec.OriginalType = Shdr.sh_type; in readSectionHeaders()
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/XCore/
HDXCoreLowerThreadLocal.cpp64 static ArrayType *createLoweredType(Type *OriginalType) { in createLoweredType() argument
65 return ArrayType::get(OriginalType, MaxThreads); in createLoweredType()
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
HDDataFlowSanitizer.cpp219 TransformedFunction(FunctionType* OriginalType, in TransformedFunction()
222 : OriginalType(OriginalType), in TransformedFunction()
235 FunctionType *OriginalType; member
269 for (unsigned i = TransformedFunction.OriginalType->getNumParams(), in TransformFunctionAttributes()
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/
HDMicrosoftMangle.cpp1755 QualType OriginalType = DT->getOriginalType(); in mangleFunctionArgumentType() local
1758 if (const auto *AT = getASTContext().getAsArrayType(OriginalType)) in mangleFunctionArgumentType()
1759 OriginalType = getASTContext().getIncompleteArrayType( in mangleFunctionArgumentType()
1763 TypePtr = OriginalType.getCanonicalType().getAsOpaquePtr(); in mangleFunctionArgumentType()
1769 if (OriginalType->isArrayType()) in mangleFunctionArgumentType()
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
HDCGStmtOpenMP.cpp645 Address DestAddr, Address SrcAddr, QualType OriginalType, in EmitOMPAggregateAssign() argument
651 const ArrayType *ArrayTy = OriginalType->getAsArrayTypeUnsafe(); in EmitOMPAggregateAssign()
705 void CodeGenFunction::EmitOMPCopy(QualType OriginalType, Address DestAddr, in EmitOMPCopy() argument
708 if (OriginalType->isArrayType()) { in EmitOMPCopy()
712 LValue Dest = MakeAddrLValue(DestAddr, OriginalType); in EmitOMPCopy()
713 LValue Src = MakeAddrLValue(SrcAddr, OriginalType); in EmitOMPCopy()
714 EmitAggregateAssign(Dest, Src, OriginalType); in EmitOMPCopy()
719 DestAddr, SrcAddr, OriginalType, in EmitOMPCopy()
HDCodeGenFunction.h3001 Address DestAddr, Address SrcAddr, QualType OriginalType,
3014 void EmitOMPCopy(QualType OriginalType,
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/
HDType.h2703 DecayedType(QualType OriginalType, QualType Decayed, QualType Canonical);
7082 DecayedType::DecayedType(QualType OriginalType, QualType DecayedPtr,
7084 : AdjustedType(Decayed, OriginalType, DecayedPtr, CanonicalPtr) {
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
HDTreeTransform.h4637 QualType OriginalType = getDerived().TransformType(TLB, TL.getOriginalLoc()); in TransformDecayedType() local
4638 if (OriginalType.isNull()) in TransformDecayedType()
4643 OriginalType != TL.getOriginalLoc().getType()) in TransformDecayedType()
4644 Result = SemaRef.Context.getDecayedType(OriginalType); in TransformDecayedType()