Home
last modified time | relevance | path

Searched refs:isPacked (Results 1 – 25 of 37) sorted by relevance

12

/freebsd-12-stable/contrib/llvm-project/llvm/lib/IR/
DType.cpp373 bool isPacked) { in get() argument
375 const AnonStructTypeKeyInfo::KeyTy Key(ETypes, isPacked); in get()
389 ST->setBody(ETypes, isPacked); in get()
411 void StructType::setBody(ArrayRef<Type*> Elements, bool isPacked) { in setBody() argument
415 if (isPacked) in setBody()
486 StructType *StructType::get(LLVMContext &Context, bool isPacked) { in get() argument
487 return get(Context, None, isPacked); in get()
491 StringRef Name, bool isPacked) { in create() argument
493 ST->setBody(Elements, isPacked); in create()
506 bool isPacked) { in create() argument
[all …]
DLLVMContextImpl.h78 bool isPacked; member
81 ETypes(E), isPacked(P) {} in KeyTy()
84 : ETypes(ST->elements()), isPacked(ST->isPacked()) {} in KeyTy()
87 if (isPacked != that.isPacked)
109 Key.isPacked); in getHashValue()
DDataLayout.cpp56 const Align TyAlign = ST->isPacked() ? Align(1) : DL.getABITypeAlign(Ty); in StructLayout()
755 if (cast<StructType>(Ty)->isPacked() && abi_or_pref) in getAlignment()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
DNativeTypeUDT.cpp65 dumpSymbolField(OS, "packed", isPacked(), Indent); in dump()
190 bool NativeTypeUDT::isPacked() const { in isPacked() function in NativeTypeUDT
192 return UnmodifiedType->isPacked(); in isPacked()
DNativeTypeEnum.cpp155 dumpSymbolField(OS, "packed", isPacked(), Indent); in dump()
326 bool NativeTypeEnum::isPacked() const { in isPacked() function in NativeTypeEnum
328 return UnmodifiedType->isPacked(); in isPacked()
DNativeRawSymbol.cpp632 bool NativeRawSymbol::isPacked() const { in isPacked() function in NativeRawSymbol
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/IR/
DDerivedTypes.h238 bool isPacked = false);
241 StringRef Name, bool isPacked = false);
252 bool isPacked = false);
255 static StructType *get(LLVMContext &Context, bool isPacked = false);
272 bool isPacked() const { return (getSubclassData() & SCDB_Packed) != 0; } in isPacked() function
301 void setBody(ArrayRef<Type*> Elements, bool isPacked = false);
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/
DPDBSymbolTypeUDT.h42 FORWARD_SYMBOL_METHOD(isPacked)
DPDBSymbolTypeTypedef.h37 FORWARD_SYMBOL_METHOD(isPacked)
DPDBSymbolTypeEnum.h41 FORWARD_SYMBOL_METHOD(isPacked)
DPDBSymbolTypeBaseClass.h42 FORWARD_SYMBOL_METHOD(isPacked)
DIPDBRawSymbol.h226 virtual bool isPacked() const = 0;
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/
DNativeTypeUDT.h53 bool isPacked() const override;
DNativeTypeEnum.h54 bool isPacked() const override;
DNativeRawSymbol.h204 bool isPacked() const override;
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Linker/
DIRMover.cpp176 DSTy->isPacked() != SSTy->isPacked()) in areTypesIsomorphic()
211 DstSTy->setBody(Elements, SrcSTy->isPacked()); in linkDefinedTypeBodies()
220 DTy->setBody(ETypes, STy->isPacked()); in finishType()
314 bool IsPacked = STy->isPacked(); in get()
1540 : ETypes(ST->elements()), IsPacked(ST->isPacked()) {} in KeyTy()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
DFunctionComparator.cpp457 if (STyL->isPacked() != STyR->isPacked()) in cmpTypes()
458 return cmpNumbers(STyL->isPacked(), STyR->isPacked()); in cmpTypes()
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/DIA/
DDIARawSymbol.h199 bool isPacked() const override;
/freebsd-12-stable/contrib/llvm-project/clang/lib/CodeGen/
DConstantInitBuilder.cpp291 assert(ty->isPacked() == Packed); in finishStruct()
/freebsd-12-stable/contrib/llvm-project/llvm/tools/llvm-diff/
DDifferenceEngine.cpp486 LTy->isPacked() != RTy->isPacked()) in equivalentAsOperands()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
DSIInstrInfo.h404 static bool isPacked(const MachineInstr &MI) { in isPacked() function
408 bool isPacked(uint16_t Opcode) const { in isPacked() function
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/CodeGen/
DConstantInitBuilder.h474 if (structTy) this->Packed = structTy->isPacked(); in ConstantStructBuilderTemplateBase()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Coroutines/
DCoroutines.cpp678 if (StructTy->isOpaque() || !StructTy->isPacked() || in checkAsyncFuncPointer()
/freebsd-12-stable/contrib/llvm-project/clang/lib/AST/
DRecordLayoutBuilder.cpp802 bool isPacked, const FieldDecl *D);
2221 unsigned UnpackedAlign, bool isPacked, const FieldDecl *D) { in CheckFieldPadding() argument
2256 if (isPacked && Offset != UnpackedOffset) { in CheckFieldPadding()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/
DDeadArgumentElimination.cpp824 NRetTy = StructType::get(STy->getContext(), RetTypes, STy->isPacked()); in RemoveDeadStuffFromFunction()

12