Home
last modified time | relevance | path

Searched refs:BoundaryAlignment (Results 1 – 2 of 2) sorted by relevance

/llvm-project-15.0.7/llvm/test/CodeGen/X86/
H A D2008-05-12-tailmerge-5.ll8 %struct.BoundaryAlignment = type { [3 x i8], i8, i16, i16, i8, [2 x i8] }
59 %str_addr = alloca %struct.BoundaryAlignment ; <ptr> [#uses=7]
92 %tmp13 = getelementptr %struct.BoundaryAlignment, ptr %str_addr, i32 0, i32 0 ; <ptr> [#uses=1]
115 %tmp28 = getelementptr %struct.BoundaryAlignment, ptr %str_addr, i32 0, i32 1 ; <ptr> [#uses=1]
128 %tmp36 = getelementptr %struct.BoundaryAlignment, ptr %str_addr, i32 0, i32 2 ; <ptr> [#uses=1]
149 %tmp52 = getelementptr %struct.BoundaryAlignment, ptr %str_addr, i32 0, i32 3 ; <ptr> [#uses=1]
170 %tmp68 = getelementptr %struct.BoundaryAlignment, ptr %str_addr, i32 0, i32 4 ; <ptr> [#uses=1]
/llvm-project-15.0.7/llvm/lib/MC/
H A DMCAssembler.cpp1037 Align BoundaryAlignment) { in mayCrossBoundary() argument
1039 return (StartAddr >> Log2(BoundaryAlignment)) != in mayCrossBoundary()
1040 ((EndAddr - 1) >> Log2(BoundaryAlignment)); in mayCrossBoundary()
1050 Align BoundaryAlignment) { in isAgainstBoundary() argument
1052 return (EndAddr & (BoundaryAlignment.value() - 1)) == 0; in isAgainstBoundary()
1062 Align BoundaryAlignment) { in needPadding() argument
1063 return mayCrossBoundary(StartAddr, Size, BoundaryAlignment) || in needPadding()
1064 isAgainstBoundary(StartAddr, Size, BoundaryAlignment); in needPadding()
1080 Align BoundaryAlignment = BF.getAlignment(); in relaxBoundaryAlign() local
1081 uint64_t NewSize = needPadding(AlignedOffset, AlignedSize, BoundaryAlignment) in relaxBoundaryAlign()
[all …]