Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DDWARFCallFrameInfo.h98 uint32_t code_align; member
111 : cie_offset(offset), version(-1), code_align(0), data_align(0), in CIE()
/freebsd/contrib/llvm-project/lldb/source/Symbol/
H A DDWARFCallFrameInfo.cpp337 cie_sp->code_align = (uint32_t)m_cfi_data.GetULEB128(&offset); in ParseCIE()
614 uint32_t code_align = cie->code_align; in ParseFDE() local
638 row.SlideOffset(extended_opcode * code_align); in ParseFDE()
684 row.SlideOffset(m_cfi_data.GetU8(&offset) * code_align); in ParseFDE()
694 row.SlideOffset(m_cfi_data.GetU16(&offset) * code_align); in ParseFDE()
704 row.SlideOffset(m_cfi_data.GetU32(&offset) * code_align); in ParseFDE()
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DAttrDocs.td9036 let Heading = "clang::code_align";
9038 The ``clang::code_align(N)`` attribute applies to a loop and specifies the byte
9048 [[clang::code_align(16)]] for (int i = 0; i < 10; ++i) var++;
9052 [[clang::code_align(64)]] for (int i = 0; i < n; ++i) array[i] = 0;
9057 [[clang::code_align(32)]] while (i < 10) { a1[i] += 3; }
9062 [[clang::code_align(8)]] do {
9069 [[clang::code_align(A)]] for(;;) { }
H A DAttr.td5152 let Spellings = [Clang<"code_align">];