Home
last modified time | relevance | path

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

/src/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()
/src/contrib/llvm-project/llvm/lib/ObjCopy/ELF/
H A DELFObject.h518 uint64_t OriginalType = ELF::SHT_NULL; variable
634 Type = OriginalType = ELF::SHT_PROGBITS; in OwnedDataSection()
642 Type = OriginalType = ELF::SHT_PROGBITS; in OwnedDataSection()
717 Type = OriginalType = ELF::SHT_STRTAB; in StringTableSection()
729 return S->OriginalType == ELF::SHT_STRTAB; in classof()
803 Type = OriginalType = ELF::SHT_SYMTAB_SHNDX; in SectionIndexSection()
822 SymbolTableSection() { Type = OriginalType = ELF::SHT_SYMTAB; } in SymbolTableSection()
853 return S->OriginalType == ELF::SHT_SYMTAB; in classof()
885 S->OriginalType); in classof()
975 return S->OriginalType == ELF::SHT_GROUP; in classof()
[all …]
H A DELFObject.cpp1167 Type = OriginalType = ELF::SHT_PROGBITS; in init()
1807 Sec->Type = Sec->OriginalType = Shdr.sh_type; in readSectionHeaders()
/src/contrib/llvm-project/llvm/lib/Target/XCore/
H A DXCoreLowerThreadLocal.cpp64 static ArrayType *createLoweredType(Type *OriginalType) { in createLoweredType() argument
65 return ArrayType::get(OriginalType, MaxThreads); in createLoweredType()
/src/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPULateCodeGenPrepare.cpp105 Type *calculateConvertType(Type *OriginalType);
191 Type *LiveRegOptimizer::calculateConvertType(Type *OriginalType) { in calculateConvertType() argument
192 assert(OriginalType->getScalarSizeInBits() <= in calculateConvertType()
195 FixedVectorType *VTy = cast<FixedVectorType>(OriginalType); in calculateConvertType()
/src/contrib/llvm-project/clang/lib/AST/
H A DMicrosoftMangle.cpp2323 QualType OriginalType = DT->getOriginalType(); in mangleFunctionArgumentType() local
2326 if (const auto *AT = getASTContext().getAsArrayType(OriginalType)) in mangleFunctionArgumentType()
2327 OriginalType = getASTContext().getIncompleteArrayType( in mangleFunctionArgumentType()
2331 TypePtr = OriginalType.getCanonicalType().getAsOpaquePtr(); in mangleFunctionArgumentType()
2337 if (OriginalType->isArrayType()) in mangleFunctionArgumentType()
/src/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()
/src/contrib/llvm-project/clang/lib/CodeGen/
H A DCGStmtOpenMP.cpp723 Address DestAddr, Address SrcAddr, QualType OriginalType, in EmitOMPAggregateAssign() argument
729 const ArrayType *ArrayTy = OriginalType->getAsArrayTypeUnsafe(); in EmitOMPAggregateAssign()
787 void CodeGenFunction::EmitOMPCopy(QualType OriginalType, Address DestAddr, in EmitOMPCopy() argument
790 if (OriginalType->isArrayType()) { in EmitOMPCopy()
794 LValue Dest = MakeAddrLValue(DestAddr, OriginalType); in EmitOMPCopy()
795 LValue Src = MakeAddrLValue(SrcAddr, OriginalType); in EmitOMPCopy()
796 EmitAggregateAssign(Dest, Src, OriginalType); in EmitOMPCopy()
801 DestAddr, SrcAddr, OriginalType, in EmitOMPCopy()
H A DCodeGenFunction.h3673 Address DestAddr, Address SrcAddr, QualType OriginalType,
3686 void EmitOMPCopy(QualType OriginalType,
/src/contrib/llvm-project/clang/include/clang/AST/
H A DType.h3358 DecayedType(QualType OriginalType, QualType Decayed, QualType Canonical);
8601 DecayedType::DecayedType(QualType OriginalType, QualType DecayedPtr,
8603 : AdjustedType(Decayed, OriginalType, DecayedPtr, CanonicalPtr) {
/src/contrib/llvm-project/clang/lib/Sema/
H A DTreeTransform.h5270 QualType OriginalType = getDerived().TransformType(TLB, TL.getOriginalLoc()); in TransformDecayedType() local
5271 if (OriginalType.isNull()) in TransformDecayedType()
5276 OriginalType != TL.getOriginalLoc().getType()) in TransformDecayedType()
5277 Result = SemaRef.Context.getDecayedType(OriginalType); in TransformDecayedType()
5287 QualType OriginalType = getDerived().TransformType(TLB, TL.getElementLoc()); in TransformArrayParameterType() local
5288 if (OriginalType.isNull()) in TransformArrayParameterType()
5293 OriginalType != TL.getElementLoc().getType()) in TransformArrayParameterType()
5294 Result = SemaRef.Context.getArrayParameterType(OriginalType); in TransformArrayParameterType()