| /freebsd-12-stable/contrib/llvm-project/llvm/lib/IR/ |
| D | Type.cpp | 373 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 …]
|
| D | LLVMContextImpl.h | 78 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()
|
| D | DataLayout.cpp | 56 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/ |
| D | NativeTypeUDT.cpp | 65 dumpSymbolField(OS, "packed", isPacked(), Indent); in dump() 190 bool NativeTypeUDT::isPacked() const { in isPacked() function in NativeTypeUDT 192 return UnmodifiedType->isPacked(); in isPacked()
|
| D | NativeTypeEnum.cpp | 155 dumpSymbolField(OS, "packed", isPacked(), Indent); in dump() 326 bool NativeTypeEnum::isPacked() const { in isPacked() function in NativeTypeEnum 328 return UnmodifiedType->isPacked(); in isPacked()
|
| D | NativeRawSymbol.cpp | 632 bool NativeRawSymbol::isPacked() const { in isPacked() function in NativeRawSymbol
|
| /freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/IR/ |
| D | DerivedTypes.h | 238 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/ |
| D | PDBSymbolTypeUDT.h | 42 FORWARD_SYMBOL_METHOD(isPacked)
|
| D | PDBSymbolTypeTypedef.h | 37 FORWARD_SYMBOL_METHOD(isPacked)
|
| D | PDBSymbolTypeEnum.h | 41 FORWARD_SYMBOL_METHOD(isPacked)
|
| D | PDBSymbolTypeBaseClass.h | 42 FORWARD_SYMBOL_METHOD(isPacked)
|
| D | IPDBRawSymbol.h | 226 virtual bool isPacked() const = 0;
|
| /freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/ |
| D | NativeTypeUDT.h | 53 bool isPacked() const override;
|
| D | NativeTypeEnum.h | 54 bool isPacked() const override;
|
| D | NativeRawSymbol.h | 204 bool isPacked() const override;
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Linker/ |
| D | IRMover.cpp | 176 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/ |
| D | FunctionComparator.cpp | 457 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/ |
| D | DIARawSymbol.h | 199 bool isPacked() const override;
|
| /freebsd-12-stable/contrib/llvm-project/clang/lib/CodeGen/ |
| D | ConstantInitBuilder.cpp | 291 assert(ty->isPacked() == Packed); in finishStruct()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/tools/llvm-diff/ |
| D | DifferenceEngine.cpp | 486 LTy->isPacked() != RTy->isPacked()) in equivalentAsOperands()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
| D | SIInstrInfo.h | 404 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/ |
| D | ConstantInitBuilder.h | 474 if (structTy) this->Packed = structTy->isPacked(); in ConstantStructBuilderTemplateBase()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Coroutines/ |
| D | Coroutines.cpp | 678 if (StructTy->isOpaque() || !StructTy->isPacked() || in checkAsyncFuncPointer()
|
| /freebsd-12-stable/contrib/llvm-project/clang/lib/AST/ |
| D | RecordLayoutBuilder.cpp | 802 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/ |
| D | DeadArgumentElimination.cpp | 824 NRetTy = StructType::get(STy->getContext(), RetTypes, STy->isPacked()); in RemoveDeadStuffFromFunction()
|