| /NextBSD/contrib/llvm/lib/IR/ |
| HD | Type.cpp | 405 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 …]
|
| HD | LLVMContextImpl.h | 82 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()
|
| HD | DataLayout.cpp | 49 unsigned TyAlign = ST->isPacked() ? 1 : DL.getABITypeAlignment(Ty); in StructLayout() 641 if (cast<StructType>(Ty)->isPacked() && abi_or_pref) in getAlignment()
|
| HD | ConstantFold.cpp | 360 if (!STy->isPacked()) { in getFoldedSizeOf() 423 if (STy->isPacked()) in getFoldedAlignOf() 486 if (!STy->isPacked()) { in getFoldedOffsetOf() 651 if (!STy->isPacked()) { in ConstantFoldCastInstruction()
|
| HD | AsmWriter.cpp | 528 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()
|
| HD | Core.cpp | 470 return unwrap<StructType>(StructTy)->isPacked(); in LLVMIsPackedStruct()
|
| /NextBSD/contrib/llvm/include/llvm/IR/ |
| HD | DerivedTypes.h | 218 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/ |
| HD | PDBSymbolTypeUDT.h | 41 FORWARD_SYMBOL_METHOD(isPacked)
|
| HD | PDBSymbolTypeTypedef.h | 41 FORWARD_SYMBOL_METHOD(isPacked)
|
| HD | PDBSymbolTypeEnum.h | 45 FORWARD_SYMBOL_METHOD(isPacked)
|
| HD | PDBSymbolTypeBaseClass.h | 43 FORWARD_SYMBOL_METHOD(isPacked)
|
| HD | IPDBRawSymbol.h | 181 virtual bool isPacked() const = 0;
|
| /NextBSD/contrib/llvm/lib/Linker/ |
| HD | LinkModules.cpp | 193 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/ |
| HD | MergeFunctions.cpp | 670 if (STyL->isPacked() != STyR->isPacked()) in cmpTypes() 671 return cmpNumbers(STyL->isPacked(), STyR->isPacked()); in cmpTypes()
|
| HD | DeadArgumentElimination.cpp | 826 NRetTy = StructType::get(STy->getContext(), RetTypes, STy->isPacked()); in RemoveDeadStuffFromFunction()
|
| /NextBSD/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/ |
| HD | DIARawSymbol.h | 173 bool isPacked() const override;
|
| /NextBSD/contrib/llvm/tools/clang/lib/AST/ |
| HD | RecordLayoutBuilder.cpp | 761 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/ |
| HD | LLParser.cpp | 2029 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/ |
| HD | DIARawSymbol.cpp | 990 bool DIARawSymbol::isPacked() const { in isPacked() function in DIARawSymbol
|
| /NextBSD/contrib/llvm/lib/Target/CppBackend/ |
| HD | CPPBackend.cpp | 634 << (ST->isPacked() ? "true" : "false") << ");"; in printType()
|
| /NextBSD/contrib/llvm/lib/Transforms/Instrumentation/ |
| HD | MemorySanitizer.cpp | 868 StructType *Res = StructType::get(*MS.C, Elements, ST->isPacked()); in getShadowTy()
|
| /NextBSD/contrib/llvm/lib/Bitcode/Writer/ |
| HD | BitcodeWriter.cpp | 437 TypeVals.push_back(ST->isPacked()); in WriteTypeTable()
|
| /NextBSD/contrib/llvm/lib/Transforms/Scalar/ |
| HD | SROA.cpp | 3519 StructType::get(STy->getContext(), makeArrayRef(EI, EE), STy->isPacked()); in getTypePartition()
|
| /NextBSD/contrib/llvm/lib/Target/NVPTX/ |
| HD | NVPTXISelLowering.cpp | 2165 aggregateIsPacked = STy->isPacked(); in LowerFormalArguments()
|
| /NextBSD/contrib/llvm/lib/Analysis/ |
| HD | ScalarEvolution.cpp | 415 if (!STy->isPacked() && in isAlignOf()
|