Home
last modified time | relevance | path

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

/NextBSD/contrib/llvm/lib/IR/
HDType.cpp405 bool isPacked) { in get() argument
407 AnonStructTypeKeyInfo::KeyTy Key(ETypes, isPacked); in get()
415 ST->setBody(ETypes, isPacked); in get()
424 void StructType::setBody(ArrayRef<Type*> Elements, bool isPacked) { in setBody() argument
428 if (isPacked) in setBody()
497 StructType *StructType::get(LLVMContext &Context, bool isPacked) { in get() argument
498 return get(Context, None, isPacked); in get()
517 StringRef Name, bool isPacked) { in create() argument
519 ST->setBody(Elements, isPacked); in create()
532 bool isPacked) { in create() argument
[all …]
HDLLVMContextImpl.h82 bool isPacked; member
84 ETypes(E), isPacked(P) {} in KeyTy()
86 : ETypes(ST->elements()), isPacked(ST->isPacked()) {} in KeyTy()
88 if (isPacked != that.isPacked)
107 Key.isPacked); in getHashValue()
HDDataLayout.cpp49 unsigned TyAlign = ST->isPacked() ? 1 : DL.getABITypeAlignment(Ty); in StructLayout()
641 if (cast<StructType>(Ty)->isPacked() && abi_or_pref) in getAlignment()
HDConstantFold.cpp360 if (!STy->isPacked()) { in getFoldedSizeOf()
423 if (STy->isPacked()) in getFoldedAlignOf()
486 if (!STy->isPacked()) { in getFoldedOffsetOf()
651 if (!STy->isPacked()) { in ConstantFoldCastInstruction()
HDAsmWriter.cpp528 if (STy->isPacked()) in printStructBody()
544 if (STy->isPacked()) in printStructBody()
1264 if (CS->getType()->isPacked()) in WriteConstantInternal()
1288 if (CS->getType()->isPacked()) in WriteConstantInternal()
HDCore.cpp470 return unwrap<StructType>(StructTy)->isPacked(); in LLVMIsPackedStruct()
/NextBSD/contrib/llvm/include/llvm/IR/
HDDerivedTypes.h218 bool isPacked = false);
223 bool isPacked = false);
230 bool isPacked = false);
234 static StructType *get(LLVMContext &Context, bool isPacked = false);
242 bool isPacked() const { return (getSubclassData() & SCDB_Packed) != 0; } in isPacked() function
269 void setBody(ArrayRef<Type*> Elements, bool isPacked = false);
/NextBSD/contrib/llvm/include/llvm/DebugInfo/PDB/
HDPDBSymbolTypeUDT.h41 FORWARD_SYMBOL_METHOD(isPacked)
HDPDBSymbolTypeTypedef.h41 FORWARD_SYMBOL_METHOD(isPacked)
HDPDBSymbolTypeEnum.h45 FORWARD_SYMBOL_METHOD(isPacked)
HDPDBSymbolTypeBaseClass.h43 FORWARD_SYMBOL_METHOD(isPacked)
HDIPDBRawSymbol.h181 virtual bool isPacked() const = 0;
/NextBSD/contrib/llvm/lib/Linker/
HDLinkModules.cpp193 DSTy->isPacked() != SSTy->isPacked()) in areTypesIsomorphic()
228 DstSTy->setBody(Elements, SrcSTy->isPacked()); in linkDefinedTypeBodies()
237 DTy->setBody(ETypes, STy->isPacked()); in finishType()
330 bool IsPacked = STy->isPacked(); in get()
1644 : ETypes(ST->elements()), IsPacked(ST->isPacked()) {} in KeyTy()
/NextBSD/contrib/llvm/lib/Transforms/IPO/
HDMergeFunctions.cpp670 if (STyL->isPacked() != STyR->isPacked()) in cmpTypes()
671 return cmpNumbers(STyL->isPacked(), STyR->isPacked()); in cmpTypes()
HDDeadArgumentElimination.cpp826 NRetTy = StructType::get(STy->getContext(), RetTypes, STy->isPacked()); in RemoveDeadStuffFromFunction()
/NextBSD/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/
HDDIARawSymbol.h173 bool isPacked() const override;
/NextBSD/contrib/llvm/tools/clang/lib/AST/
HDRecordLayoutBuilder.cpp761 bool isPacked, const FieldDecl *D);
1921 bool isPacked, in CheckFieldPadding() argument
1960 if (isPacked && UnpackedAlign > CharBitNum && Offset == UnpackedOffset) in CheckFieldPadding()
/NextBSD/contrib/llvm/lib/AsmParser/
HDLLParser.cpp2029 bool isPacked = EatIfPresent(lltok::less); in ParseStructDefinition() local
2039 if (isPacked) in ParseStructDefinition()
2055 (isPacked && ParseToken(lltok::greater, "expected '>' in packed struct"))) in ParseStructDefinition()
2058 STy->setBody(Body, isPacked); in ParseStructDefinition()
4050 if (ST->isPacked() != (ID.Kind == ValID::t_PackedConstantStruct)) in ConvertValIDToValue()
/NextBSD/contrib/llvm/lib/DebugInfo/PDB/DIA/
HDDIARawSymbol.cpp990 bool DIARawSymbol::isPacked() const { in isPacked() function in DIARawSymbol
/NextBSD/contrib/llvm/lib/Target/CppBackend/
HDCPPBackend.cpp634 << (ST->isPacked() ? "true" : "false") << ");"; in printType()
/NextBSD/contrib/llvm/lib/Transforms/Instrumentation/
HDMemorySanitizer.cpp868 StructType *Res = StructType::get(*MS.C, Elements, ST->isPacked()); in getShadowTy()
/NextBSD/contrib/llvm/lib/Bitcode/Writer/
HDBitcodeWriter.cpp437 TypeVals.push_back(ST->isPacked()); in WriteTypeTable()
/NextBSD/contrib/llvm/lib/Transforms/Scalar/
HDSROA.cpp3519 StructType::get(STy->getContext(), makeArrayRef(EI, EE), STy->isPacked()); in getTypePartition()
/NextBSD/contrib/llvm/lib/Target/NVPTX/
HDNVPTXISelLowering.cpp2165 aggregateIsPacked = STy->isPacked(); in LowerFormalArguments()
/NextBSD/contrib/llvm/lib/Analysis/
HDScalarEvolution.cpp415 if (!STy->isPacked() && in isAlignOf()