Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/Plugins/ObjectFile/COFF/
H A DObjectFileCOFF.cpp283 int16_t SecIdx = static_cast<int16_t>(COFFSymRef.getSectionNumber()); in ParseSymtab() local
284 if (SecIdx == COFF::IMAGE_SYM_ABSOLUTE) { in ParseSymtab()
287 } else if (SecIdx >= 1) { in ParseSymtab()
288 symbol.GetAddressRef() = Address(sections->GetSectionAtIndex(SecIdx - 1), in ParseSymtab()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DAsmPrinter.cpp2643 unsigned SecIdx = CPSections.size(); in emitConstantPool() local
2644 while (SecIdx != 0) { in emitConstantPool()
2645 if (CPSections[--SecIdx].S == S) { in emitConstantPool()
2651 SecIdx = CPSections.size(); in emitConstantPool()
2655 if (Alignment > CPSections[SecIdx].Alignment) in emitConstantPool()
2656 CPSections[SecIdx].Alignment = Alignment; in emitConstantPool()
2657 CPSections[SecIdx].CPEs.push_back(i); in emitConstantPool()