| /openbsd/src/gnu/llvm/llvm/lib/IR/ |
| D | Type.cpp | 409 bool isPacked) { in get() argument 411 const AnonStructTypeKeyInfo::KeyTy Key(ETypes, isPacked); in get() 425 ST->setBody(ETypes, isPacked); in get() 447 void StructType::setBody(ArrayRef<Type*> Elements, bool isPacked) { in setBody() argument 451 if (isPacked) in setBody() 522 StructType *StructType::get(LLVMContext &Context, bool isPacked) { in get() argument 523 return get(Context, std::nullopt, isPacked); in get() 527 StringRef Name, bool isPacked) { in create() argument 529 ST->setBody(Elements, isPacked); in create() 542 bool isPacked) { in create() argument [all …]
|
| D | LLVMContextImpl.h | 95 bool isPacked; member 97 KeyTy(const ArrayRef<Type *> &E, bool P) : ETypes(E), isPacked(P) {} in KeyTy() 100 : ETypes(ST->elements()), isPacked(ST->isPacked()) {} in KeyTy() 103 if (isPacked != that.isPacked) 122 hash_combine_range(Key.ETypes.begin(), Key.ETypes.end()), Key.isPacked); in getHashValue()
|
| D | DataLayout.cpp | 57 const Align TyAlign = ST->isPacked() ? Align(1) : DL.getABITypeAlign(Ty); in StructLayout() 766 if (cast<StructType>(Ty)->isPacked() && abi_or_pref) in getAlignment()
|
| D | AsmWriter.cpp | 646 if (STy->isPacked()) in printStructBody() 661 if (STy->isPacked()) in printStructBody() 1520 if (CS->getType()->isPacked()) in WriteConstantInternal() 1542 if (CS->getType()->isPacked()) in WriteConstantInternal()
|
| /openbsd/src/gnu/llvm/llvm/lib/DebugInfo/PDB/Native/ |
| D | NativeTypeUDT.cpp | 66 dumpSymbolField(OS, "packed", isPacked(), Indent); in dump() 191 bool NativeTypeUDT::isPacked() const { in isPacked() function in NativeTypeUDT 193 return UnmodifiedType->isPacked(); in isPacked()
|
| D | NativeTypeEnum.cpp | 158 dumpSymbolField(OS, "packed", isPacked(), Indent); in dump() 331 bool NativeTypeEnum::isPacked() const { in isPacked() function in NativeTypeEnum 333 return UnmodifiedType->isPacked(); in isPacked()
|
| D | NativeRawSymbol.cpp | 631 bool NativeRawSymbol::isPacked() const { in isPacked() function in NativeRawSymbol
|
| /openbsd/src/gnu/llvm/llvm/include/llvm/IR/ |
| D | DerivedTypes.h | 239 bool isPacked = false); 242 StringRef Name, bool isPacked = false); 253 bool isPacked = false); 256 static StructType *get(LLVMContext &Context, bool isPacked = false); 273 bool isPacked() const { return (getSubclassData() & SCDB_Packed) != 0; } in isPacked() function 302 void setBody(ArrayRef<Type*> Elements, bool isPacked = false);
|
| /openbsd/src/gnu/llvm/llvm/include/llvm/DebugInfo/PDB/ |
| D | PDBSymbolTypeTypedef.h | 36 FORWARD_SYMBOL_METHOD(isPacked)
|
| D | PDBSymbolTypeUDT.h | 41 FORWARD_SYMBOL_METHOD(isPacked)
|
| D | PDBSymbolTypeEnum.h | 43 FORWARD_SYMBOL_METHOD(isPacked)
|
| D | PDBSymbolTypeBaseClass.h | 42 FORWARD_SYMBOL_METHOD(isPacked)
|
| D | IPDBRawSymbol.h | 226 virtual bool isPacked() const = 0;
|
| /openbsd/src/gnu/llvm/llvm/include/llvm/DebugInfo/PDB/Native/ |
| D | NativeTypeEnum.h | 55 bool isPacked() const override;
|
| D | NativeTypeUDT.h | 56 bool isPacked() const override;
|
| D | NativeRawSymbol.h | 204 bool isPacked() const override;
|
| /openbsd/src/gnu/llvm/llvm/lib/Transforms/Utils/ |
| D | FunctionComparator.cpp | 474 if (STyL->isPacked() != STyR->isPacked()) in cmpTypes() 475 return cmpNumbers(STyL->isPacked(), STyR->isPacked()); in cmpTypes()
|
| /openbsd/src/gnu/llvm/llvm/lib/Linker/ |
| D | IRMover.cpp | 185 DSTy->isPacked() != SSTy->isPacked()) in areTypesIsomorphic() 220 DstSTy->setBody(Elements, SrcSTy->isPacked()); in linkDefinedTypeBodies() 229 DTy->setBody(ETypes, STy->isPacked()); in finishType() 323 bool IsPacked = STy->isPacked(); in get() 1694 : ETypes(ST->elements()), IsPacked(ST->isPacked()) {} in KeyTy()
|
| /openbsd/src/gnu/llvm/llvm/include/llvm/DebugInfo/PDB/DIA/ |
| D | DIARawSymbol.h | 199 bool isPacked() const override;
|
| /openbsd/src/gnu/llvm/clang/lib/CodeGen/ |
| D | ConstantInitBuilder.cpp | 290 assert(ty->isPacked() == Packed); in finishStruct()
|
| /openbsd/src/gnu/llvm/clang/include/clang/CodeGen/ |
| D | ConstantInitBuilder.h | 474 if (structTy) this->Packed = structTy->isPacked(); in ConstantStructBuilderTemplateBase()
|
| /openbsd/src/gnu/llvm/llvm/lib/Target/AMDGPU/ |
| D | SIInstrInfo.h | 418 static bool isPacked(const MachineInstr &MI) { in isPacked() function 422 bool isPacked(uint16_t Opcode) const { in isPacked() function
|
| /openbsd/src/gnu/llvm/llvm/lib/Transforms/Coroutines/ |
| D | Coroutines.cpp | 605 if (StructTy->isOpaque() || !StructTy->isPacked() || in checkAsyncFuncPointer()
|
| /openbsd/src/gnu/llvm/clang/lib/AST/ |
| D | RecordLayoutBuilder.cpp | 802 bool isPacked, const FieldDecl *D); 2272 unsigned UnpackedAlign, bool isPacked, const FieldDecl *D) { in CheckFieldPadding() argument 2307 if (isPacked && Offset != UnpackedOffset) { in CheckFieldPadding()
|
| /openbsd/src/gnu/llvm/llvm/lib/Transforms/IPO/ |
| D | DeadArgumentElimination.cpp | 810 NRetTy = StructType::get(STy->getContext(), RetTypes, STy->isPacked()); in removeDeadStuffFromFunction()
|