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.h95 uint32_t code_align; member
108 : cie_offset(offset), version(-1), code_align(0), data_align(0), in CIE()
/freebsd/contrib/llvm-project/lldb/source/Symbol/
H A DDWARFCallFrameInfo.cpp306 cie_sp->code_align = (uint32_t)m_cfi_data.GetULEB128(&offset); in ParseCIE()
623 uint32_t code_align = cie->code_align; in FDEToUnwindPlan() local
657 row->SlideOffset(extended_opcode * code_align); in FDEToUnwindPlan()
711 row->SlideOffset(m_cfi_data.GetU8(&offset) * code_align); in FDEToUnwindPlan()
724 row->SlideOffset(m_cfi_data.GetU16(&offset) * code_align); in FDEToUnwindPlan()
737 row->SlideOffset(m_cfi_data.GetU32(&offset) * code_align); in FDEToUnwindPlan()
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DAttrDocs.td8006 let Heading = "clang::code_align";
8008 The ``clang::code_align(N)`` attribute applies to a loop and specifies the byte
8018 [[clang::code_align(16)]] for (int i = 0; i < 10; ++i) var++;
8022 [[clang::code_align(64)]] for (int i = 0; i < n; ++i) array[i] = 0;
8027 [[clang::code_align(32)]] while (i < 10) { a1[i] += 3; }
8032 [[clang::code_align(8)]] do {
8039 [[clang::code_align(A)]] for(;;) { }
H A DAttr.td4705 let Spellings = [Clang<"code_align">];