Lines Matching full:sect
23 LLVMSectionIteratorRef sect; in llvm_object_list_sections() local
37 sect = LLVMGetSections(O); in llvm_object_list_sections()
38 while (!LLVMIsSectionIteratorAtEnd(O, sect)) { in llvm_object_list_sections()
39 printf("'%s': @0x%08" PRIx64 " +%" PRIu64 "\n", LLVMGetSectionName(sect), in llvm_object_list_sections()
40 LLVMGetSectionAddress(sect), LLVMGetSectionSize(sect)); in llvm_object_list_sections()
42 LLVMMoveToNextSection(sect); in llvm_object_list_sections()
45 LLVMDisposeSectionIterator(sect); in llvm_object_list_sections()
55 LLVMSectionIteratorRef sect; in llvm_object_list_symbols() local
70 sect = LLVMGetSections(O); in llvm_object_list_symbols()
74 LLVMMoveToContainingSection(sect, sym); in llvm_object_list_symbols()
77 LLVMGetSectionName(sect)); in llvm_object_list_symbols()