Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/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()
/openbsd-src/gnu/llvm/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()
594 Type = OriginalType = ELF::SHT_STRTAB; in StringTableSection()
606 return S->OriginalType == ELF::SHT_STRTAB; in classof()
680 Type = OriginalType = ELF::SHT_SYMTAB_SHNDX; in SectionIndexSection()
698 SymbolTableSection() { Type = OriginalType = ELF::SHT_SYMTAB; } in SymbolTableSection()
728 return S->OriginalType == ELF::SHT_SYMTAB; in classof()
759 return S->OriginalType == ELF::SHT_REL || S->OriginalType == ELF::SHT_RELA; in classof()
803 return S->OriginalType == ELF::SHT_REL || S->OriginalType == ELF::SHT_RELA; in classof()
[all …]
H A DELFObject.cpp1126 Type = OriginalType = ELF::SHT_PROGBITS; in init()
1756 Sec->Type = Sec->OriginalType = Shdr.sh_type; in readSectionHeaders()
/openbsd-src/gnu/llvm/llvm/lib/Target/XCore/
H A DXCoreLowerThreadLocal.cpp64 static ArrayType *createLoweredType(Type *OriginalType) { in createLoweredType() argument
65 return ArrayType::get(OriginalType, MaxThreads); in createLoweredType()
/openbsd-src/gnu/llvm/clang/lib/AST/
H A DMicrosoftMangle.cpp2104 QualType OriginalType = DT->getOriginalType(); in mangleFunctionArgumentType() local
2107 if (const auto *AT = getASTContext().getAsArrayType(OriginalType)) in mangleFunctionArgumentType()
2108 OriginalType = getASTContext().getIncompleteArrayType( in mangleFunctionArgumentType()
2112 TypePtr = OriginalType.getCanonicalType().getAsOpaquePtr(); in mangleFunctionArgumentType()
2118 if (OriginalType->isArrayType()) in mangleFunctionArgumentType()
/openbsd-src/gnu/llvm/llvm/lib/Transforms/Instrumentation/
H A DDataFlowSanitizer.cpp351 TransformedFunction(FunctionType *OriginalType, FunctionType *TransformedType, in TransformedFunction()
353 : OriginalType(OriginalType), TransformedType(TransformedType), in TransformedFunction()
365 FunctionType *OriginalType; member
399 for (unsigned I = TransformedFunction.OriginalType->getNumParams(), in transformFunctionAttributes()
/openbsd-src/gnu/llvm/clang/lib/CodeGen/
H A DCGStmtOpenMP.cpp699 Address DestAddr, Address SrcAddr, QualType OriginalType, in EmitOMPAggregateAssign() argument
705 const ArrayType *ArrayTy = OriginalType->getAsArrayTypeUnsafe(); in EmitOMPAggregateAssign()
763 void CodeGenFunction::EmitOMPCopy(QualType OriginalType, Address DestAddr, in EmitOMPCopy() argument
766 if (OriginalType->isArrayType()) { in EmitOMPCopy()
770 LValue Dest = MakeAddrLValue(DestAddr, OriginalType); in EmitOMPCopy()
771 LValue Src = MakeAddrLValue(SrcAddr, OriginalType); in EmitOMPCopy()
772 EmitAggregateAssign(Dest, Src, OriginalType); in EmitOMPCopy()
777 DestAddr, SrcAddr, OriginalType, in EmitOMPCopy()
H A DCodeGenFunction.h3362 Address DestAddr, Address SrcAddr, QualType OriginalType,
3375 void EmitOMPCopy(QualType OriginalType,
/openbsd-src/gnu/llvm/clang/include/clang/AST/
H A DType.h2841 DecayedType(QualType OriginalType, QualType Decayed, QualType Canonical);
7479 DecayedType::DecayedType(QualType OriginalType, QualType DecayedPtr,
7481 : AdjustedType(Decayed, OriginalType, DecayedPtr, CanonicalPtr) {
/openbsd-src/gnu/llvm/clang/lib/Sema/
H A DTreeTransform.h5095 QualType OriginalType = getDerived().TransformType(TLB, TL.getOriginalLoc()); in TransformDecayedType() local
5096 if (OriginalType.isNull()) in TransformDecayedType()
5101 OriginalType != TL.getOriginalLoc().getType()) in TransformDecayedType()
5102 Result = SemaRef.Context.getDecayedType(OriginalType); in TransformDecayedType()