Home
last modified time | relevance | path

Searched refs:AlignmentValue (Results 1 – 4 of 4) sorted by relevance

/llvm-project-15.0.7/llvm/tools/llvm-lipo/
H A Dllvm-lipo.cpp205 uint32_t AlignmentValue; in parseLipoOptions() local
206 if (!to_integer<uint32_t>(Segalign->getValue(1), AlignmentValue, 16)) in parseLipoOptions()
210 if (!isPowerOf2_32(AlignmentValue)) in parseLipoOptions()
214 if (Log2_32(AlignmentValue) > MachOUniversalBinary::MaxSectionAlignment) in parseLipoOptions()
220 Log2_32(AlignmentValue)); in parseLipoOptions()
225 Twine(AlignmentValue)); in parseLipoOptions()
/llvm-project-15.0.7/llvm/lib/MC/MCParser/
H A DMasmParser.cpp144 StructInfo(StringRef StructName, bool Union, unsigned AlignmentValue) in StructInfo()
145 : Name(StructName), IsUnion(Union), Alignment(AlignmentValue) {} in StructInfo()
4528 int64_t AlignmentValue = 1; in parseDirectiveStruct() local
4531 parseAbsoluteExpression(AlignmentValue)) { in parseDirectiveStruct()
4535 if (!isPowerOf2_64(AlignmentValue)) { in parseDirectiveStruct()
4537 std::to_string(AlignmentValue)); in parseDirectiveStruct()
4555 StructInProgress.emplace_back(Name, DirKind == DK_UNION, AlignmentValue); in parseDirectiveStruct()
/llvm-project-15.0.7/clang/lib/CodeGen/
H A DCGExprScalar.cpp281 Value *AlignmentValue = CGF.EmitScalarExpr(AVAttr->getAlignment()); in EmitLValueAlignmentAssumption() local
282 llvm::ConstantInt *AlignmentCI = cast<llvm::ConstantInt>(AlignmentValue); in EmitLValueAlignmentAssumption()
H A DCGBuiltin.cpp2784 Value *AlignmentValue = EmitScalarExpr(E->getArg(1)); in EmitBuiltinExpr() local
2785 ConstantInt *AlignmentCI = cast<ConstantInt>(AlignmentValue); in EmitBuiltinExpr()