Home
last modified time | relevance | path

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

/llvm-project-15.0.7/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()
/llvm-project-15.0.7/llvm/lib/ObjCopy/ELF/
H A DELFObject.h399 uint64_t OriginalType = ELF::SHT_NULL; variable
511 Type = OriginalType = ELF::SHT_PROGBITS; in OwnedDataSection()
519 Type = OriginalType = ELF::SHT_PROGBITS; in OwnedDataSection()
591 Type = OriginalType = ELF::SHT_STRTAB; in StringTableSection()
603 return S->OriginalType == ELF::SHT_STRTAB; in classof()
725 return S->OriginalType == ELF::SHT_SYMTAB; in classof()
756 return S->OriginalType == ELF::SHT_REL || S->OriginalType == ELF::SHT_RELA; in classof()
800 return S->OriginalType == ELF::SHT_REL || S->OriginalType == ELF::SHT_RELA; in classof()
839 return S->OriginalType == ELF::SHT_GROUP; in classof()
848 return S->OriginalType == ELF::SHT_DYNSYM; in classof()
[all …]
H A DELFObject.cpp1105 Type = OriginalType = ELF::SHT_PROGBITS; in init()
1735 Sec->Type = Sec->OriginalType = Shdr.sh_type; in readSectionHeaders()
/llvm-project-15.0.7/llvm/lib/Target/XCore/
H A DXCoreLowerThreadLocal.cpp64 static ArrayType *createLoweredType(Type *OriginalType) { in createLoweredType() argument
65 return ArrayType::get(OriginalType, MaxThreads); in createLoweredType()
/llvm-project-15.0.7/clang/lib/AST/
H A DMicrosoftMangle.cpp2100 QualType OriginalType = DT->getOriginalType(); in mangleFunctionArgumentType() local
2103 if (const auto *AT = getASTContext().getAsArrayType(OriginalType)) in mangleFunctionArgumentType()
2104 OriginalType = getASTContext().getIncompleteArrayType( in mangleFunctionArgumentType()
2108 TypePtr = OriginalType.getCanonicalType().getAsOpaquePtr(); in mangleFunctionArgumentType()
2114 if (OriginalType->isArrayType()) in mangleFunctionArgumentType()
/llvm-project-15.0.7/llvm/lib/Transforms/Instrumentation/
H A DDataFlowSanitizer.cpp333 TransformedFunction(FunctionType *OriginalType, FunctionType *TransformedType, in TransformedFunction()
335 : OriginalType(OriginalType), TransformedType(TransformedType), in TransformedFunction()
347 FunctionType *OriginalType; member
381 for (unsigned I = TransformedFunction.OriginalType->getNumParams(), in transformFunctionAttributes()
/llvm-project-15.0.7/clang/lib/CodeGen/
H A DCGStmtOpenMP.cpp698 Address DestAddr, Address SrcAddr, QualType OriginalType, in EmitOMPAggregateAssign() argument
704 const ArrayType *ArrayTy = OriginalType->getAsArrayTypeUnsafe(); in EmitOMPAggregateAssign()
761 void CodeGenFunction::EmitOMPCopy(QualType OriginalType, Address DestAddr, in EmitOMPCopy() argument
764 if (OriginalType->isArrayType()) { in EmitOMPCopy()
768 LValue Dest = MakeAddrLValue(DestAddr, OriginalType); in EmitOMPCopy()
769 LValue Src = MakeAddrLValue(SrcAddr, OriginalType); in EmitOMPCopy()
770 EmitAggregateAssign(Dest, Src, OriginalType); in EmitOMPCopy()
775 DestAddr, SrcAddr, OriginalType, in EmitOMPCopy()
H A DCodeGenFunction.h3360 Address DestAddr, Address SrcAddr, QualType OriginalType,
3373 void EmitOMPCopy(QualType OriginalType,
/llvm-project-15.0.7/clang/include/clang/AST/
H A DType.h2779 DecayedType(QualType OriginalType, QualType Decayed, QualType Canonical);
7384 DecayedType::DecayedType(QualType OriginalType, QualType DecayedPtr,
7386 : AdjustedType(Decayed, OriginalType, DecayedPtr, CanonicalPtr) {
/llvm-project-15.0.7/clang/lib/Sema/
H A DTreeTransform.h5001 QualType OriginalType = getDerived().TransformType(TLB, TL.getOriginalLoc()); in TransformDecayedType() local
5002 if (OriginalType.isNull()) in TransformDecayedType()
5007 OriginalType != TL.getOriginalLoc().getType()) in TransformDecayedType()
5008 Result = SemaRef.Context.getDecayedType(OriginalType); in TransformDecayedType()