Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/tools/llvm-lipo/
H A Dllvm-lipo.cpp208 uint32_t AlignmentValue; in parseLipoOptions() local
209 if (!to_integer<uint32_t>(Segalign->getValue(1), AlignmentValue, 16)) in parseLipoOptions()
213 if (!isPowerOf2_32(AlignmentValue)) in parseLipoOptions()
217 if (Log2_32(AlignmentValue) > MachOUniversalBinary::MaxSectionAlignment) in parseLipoOptions()
223 Log2_32(AlignmentValue)); in parseLipoOptions()
228 Twine(AlignmentValue)); in parseLipoOptions()
/openbsd-src/gnu/llvm/llvm/lib/MC/MCParser/
H A DMasmParser.cpp140 StructInfo(StringRef StructName, bool Union, unsigned AlignmentValue);
224 unsigned AlignmentValue) in StructInfo() argument
225 : Name(StructName), IsUnion(Union), Alignment(AlignmentValue) {} in StructInfo()
4542 int64_t AlignmentValue = 1; in parseDirectiveStruct() local
4545 parseAbsoluteExpression(AlignmentValue)) { in parseDirectiveStruct()
4549 if (!isPowerOf2_64(AlignmentValue)) { in parseDirectiveStruct()
4551 std::to_string(AlignmentValue)); in parseDirectiveStruct()
4569 StructInProgress.emplace_back(Name, DirKind == DK_UNION, AlignmentValue); in parseDirectiveStruct()
/openbsd-src/gnu/llvm/clang/lib/CodeGen/
H A DCGExprScalar.cpp280 Value *AlignmentValue = CGF.EmitScalarExpr(AVAttr->getAlignment()); in EmitLValueAlignmentAssumption() local
281 llvm::ConstantInt *AlignmentCI = cast<llvm::ConstantInt>(AlignmentValue); in EmitLValueAlignmentAssumption()
H A DCGBuiltin.cpp2809 Value *AlignmentValue = EmitScalarExpr(E->getArg(1)); in EmitBuiltinExpr() local
2810 ConstantInt *AlignmentCI = cast<ConstantInt>(AlignmentValue); in EmitBuiltinExpr()