我在理解gdb方面遇到了一些问题。
我有一个主要功能,我在自己写了这个主要功能。
这个主要的一些行,调用库中的一些函数,我认为库名不重要但是它是tesseract-ocr。
我在main中调用函数的行,构造函数在这里:
choiceItr = new tesseract::ChoiceIterator(itr);
我在gdb的上面一行设置了一个断点,然后运行,当它在该行停止时,我使用step命令进入该功能。
以下是名为:
的库函数ChoiceIterator::ChoiceIterator(const ResultIterator& result_it) {
ASSERT_HOST(result_it.it_->word() != NULL);
tesseract_ = result_it.tesseract_;
PAGE_RES_IT res_it(*result_it.it_);
WERD_CHOICE* best_choice = res_it.word()->best_choice;
BLOB_CHOICE_LIST_CLIST* choices = best_choice->blob_choices();
if (choices != NULL) {
BLOB_CHOICE_LIST_C_IT blob_choices_it(choices);
for (int blob = 0; blob < result_it.blob_index_; ++blob)
blob_choices_it.forward();
choice_it_ = new BLOB_CHOICE_IT(blob_choices_it.data());
choice_it_->mark_cycle_pt();
} else {
choice_it_ = NULL;
}
}
然后我使用gdb的“next”命令来执行功能。
这是我的gdb控制台:
Breakpoint 1, pixsOfOneWord (langString=0x8049e7c "klm",
imageString=0x8049e71 "paket2.tif", outputData=0x8049c7b,
datapathString=0x8049e6f ".") at deneme234.cpp:161
161 choiceItr = new tesseract::ChoiceIterator(itr);
(gdb) step
tesseract::ChoiceIterator::ChoiceIterator (this=0x819e6f0, result_it=...)
at resultiterator.cpp:234
234 choice_it_ = new BLOB_CHOICE_IT(blob_choices_it.data());
(gdb) next
225 ASSERT_HOST(result_it.it_->word() != NULL);
(gdb) list
220 return it_->word()->box_word->BlobPosition(blob_index_) == SP_DROPCAP;
221 return false;
222 }
223
224 ChoiceIterator::ChoiceIterator(const ResultIterator& result_it) {
225 ASSERT_HOST(result_it.it_->word() != NULL);
226 tesseract_ = result_it.tesseract_;
227 PAGE_RES_IT res_it(*result_it.it_);
228 WERD_CHOICE* best_choice = res_it.word()->best_choice;
229 BLOB_CHOICE_LIST_CLIST* choices = best_choice->blob_choices();
(gdb) next
278 } // namespace tesseract.
(gdb) next
226 tesseract_ = result_it.tesseract_;
(gdb) next
278 } // namespace tesseract.
(gdb) next
226 tesseract_ = result_it.tesseract_;
(gdb) next
230 if (choices != NULL) {
(gdb)
如你所见,
tesseract_ = result_it.tesseract_;
行被调用了两次,为什么?
PAGE_RES_IT res_it(*result_it.it_);
WERD_CHOICE* best_choice = res_it.word()->best_choice;
BLOB_CHOICE_LIST_CLIST* choices = best_choice->blob_choices();
当我“下一步”时,上面的线没有被调用,为什么?
先谢谢。
答案 0 :(得分:12)
您正在使用优化和调试符号构建您正在使用的库(很可能是-g -O2
,这是Linux版本的默认设置)。
调试优化代码有点困难,因为控制流优化会导致代码“跳转”,某些变量变为“<optimized out>
”等。
您可以使用CXXFLAGS = -g -O0
重建库,也可以学习优化调试。
后者是一项非常有用的技能,因为很多时候你的程序只会在优化模式下崩溃,你无论如何都必须在那种模式下调试它。