Searched refs:isPacked (Results 1 - 25 of 35) sorted by relevance

12

/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/
H A DPDBSymbolTypeBaseClass.h42 FORWARD_SYMBOL_METHOD(isPacked)
H A DPDBSymbolTypeEnum.h41 FORWARD_SYMBOL_METHOD(isPacked)
H A DPDBSymbolTypeTypedef.h37 FORWARD_SYMBOL_METHOD(isPacked)
H A DPDBSymbolTypeUDT.h42 FORWARD_SYMBOL_METHOD(isPacked)
H A DIPDBRawSymbol.h226 virtual bool isPacked() const = 0;
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/
H A DNativeTypeEnum.h54 bool isPacked() const override;
H A DNativeTypeUDT.h53 bool isPacked() const override;
H A DNativeRawSymbol.h204 bool isPacked() const override;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/IR/
H A DType.cpp357 bool isPacked) {
359 const AnonStructTypeKeyInfo::KeyTy Key(ETypes, isPacked);
373 ST->setBody(ETypes, isPacked);
383 void StructType::setBody(ArrayRef<Type*> Elements, bool isPacked) { argument
387 if (isPacked)
458 StructType *StructType::get(LLVMContext &Context, bool isPacked) { argument
459 return get(Context, None, isPacked);
463 StringRef Name, bool isPacked) {
465 ST->setBody(Elements, isPacked);
478 bool isPacked) {
356 get(LLVMContext &Context, ArrayRef<Type*> ETypes, bool isPacked) argument
462 create(LLVMContext &Context, ArrayRef<Type*> Elements, StringRef Name, bool isPacked) argument
477 create(ArrayRef<Type*> Elements, StringRef Name, bool isPacked) argument
[all...]
H A DLLVMContextImpl.h98 bool isPacked; member in struct:llvm::AnonStructTypeKeyInfo::KeyTy
101 ETypes(E), isPacked(P) {}
104 : ETypes(ST->elements()), isPacked(ST->isPacked()) {}
107 if (isPacked != that.isPacked)
129 Key.isPacked);
H A DDataLayout.cpp55 const Align TyAlign = ST->isPacked() ? Align(1) : DL.getABITypeAlign(Ty);
728 if (cast<StructType>(Ty)->isPacked() && abi_or_pref)
H A DConstantFold.cpp363 if (!STy->isPacked()) {
424 if (STy->isPacked())
485 if (!STy->isPacked()) {
674 if (!STy->isPacked()) {
/freebsd-13-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DNativeTypeUDT.cpp65 dumpSymbolField(OS, "packed", isPacked(), Indent);
190 bool NativeTypeUDT::isPacked() const { function in class:NativeTypeUDT
192 return UnmodifiedType->isPacked();
H A DNativeTypeEnum.cpp155 dumpSymbolField(OS, "packed", isPacked(), Indent);
326 bool NativeTypeEnum::isPacked() const { function in class:NativeTypeEnum
328 return UnmodifiedType->isPacked();
H A DNativeRawSymbol.cpp632 bool NativeRawSymbol::isPacked() const { function in class:NativeRawSymbol
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/IR/
H A DDerivedTypes.h244 bool isPacked = false);
247 StringRef Name, bool isPacked = false);
259 bool isPacked = false);
262 static StructType *get(LLVMContext &Context, bool isPacked = false);
276 bool isPacked() const { return (getSubclassData() & SCDB_Packed) != 0; } function in class:llvm::StructType
302 void setBody(ArrayRef<Type*> Elements, bool isPacked = false);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DFunctionComparator.cpp451 if (STyL->isPacked() != STyR->isPacked())
452 return cmpNumbers(STyL->isPacked(), STyR->isPacked());
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Linker/
H A DIRMover.cpp174 DSTy->isPacked() != SSTy->isPacked())
209 DstSTy->setBody(Elements, SrcSTy->isPacked());
218 DTy->setBody(ETypes, STy->isPacked());
322 bool IsPacked = STy->isPacked();
1493 : ETypes(ST->elements()), IsPacked(ST->isPacked()) {}
/freebsd-13-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DConstantInitBuilder.cpp291 assert(ty->isPacked() == Packed);
H A DCGDecl.cpp1020 assert(!STy->isPacked());
1042 return llvm::ConstantStruct::getAnon(Values, STy->isPacked());
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/DIA/
H A DDIARawSymbol.h199 bool isPacked() const override;
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/CodeGen/
H A DConstantInitBuilder.h474 if (structTy) this->Packed = structTy->isPacked();
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DSIInstrInfo.h403 static bool isPacked(const MachineInstr &MI) { function in class:llvm::final
407 bool isPacked(uint16_t Opcode) const { function in class:llvm::final
/freebsd-13-stable/contrib/llvm-project/clang/lib/AST/
H A DRecordLayoutBuilder.cpp781 bool isPacked, const FieldDecl *D);
2035 unsigned UnpackedAlign, bool isPacked, const FieldDecl *D) {
2070 if (isPacked && Offset != UnpackedOffset) {
2033 CheckFieldPadding( uint64_t Offset, uint64_t UnpaddedOffset, uint64_t UnpackedOffset, unsigned UnpackedAlign, bool isPacked, const FieldDecl *D) argument
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DDeadArgumentElimination.cpp820 NRetTy = StructType::get(STy->getContext(), RetTypes, STy->isPacked());

Completed in 173 milliseconds

12