Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DDWARFCallFrameInfo.h95 uint32_t code_align; member
108 : cie_offset(offset), version(-1), code_align(0), data_align(0), in CIE()
/freebsd-14.2/contrib/llvm-project/lldb/source/Symbol/
H A DDWARFCallFrameInfo.cpp306 cie_sp->code_align = (uint32_t)m_cfi_data.GetULEB128(&offset); in ParseCIE()
624 uint32_t code_align = cie->code_align; in FDEToUnwindPlan() local
658 row->SlideOffset(extended_opcode * code_align); in FDEToUnwindPlan()
712 row->SlideOffset(m_cfi_data.GetU8(&offset) * code_align); in FDEToUnwindPlan()
725 row->SlideOffset(m_cfi_data.GetU16(&offset) * code_align); in FDEToUnwindPlan()
738 row->SlideOffset(m_cfi_data.GetU32(&offset) * code_align); in FDEToUnwindPlan()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Basic/
H A DAttrDocs.td7688 let Heading = "clang::code_align";
7690 The ``clang::code_align(N)`` attribute applies to a loop and specifies the byte
7700 [[clang::code_align(16)]] for (int i = 0; i < 10; ++i) var++;
7704 [[clang::code_align(64)]] for (int i = 0; i < n; ++i) array[i] = 0;
7709 [[clang::code_align(32)]] while (i < 10) { a1[i] += 3; }
7714 [[clang::code_align(8)]] do {
7721 [[clang::code_align(A)]] for(;;) { }
H A DAttr.td4435 let Spellings = [Clang<"code_align">];