从内存映射寄存器读取

发布于 2024-10-06 10:08:28 字数 587 浏览 9 评论 0原文

我正在使用的处理器架构有一个时间标签计数器,我想读出它来进行性能测量。时间标签计数器被内存映射到 地址0x90000008。我使用以下例程读取时间值 标签计数器,但是打印输出的差异始终为零。任何人有想法 我缺少什么?

char* const ADDR = (char *) 0x90000008;

unsigned long cycle_count_val() {

   unsigned long res;

   asm volatile (

   "set ADDR, %%l0           \n\t"
   "ld [%%l0], %0            \n\t"

   : "=r" (res)
   :
   : "%l0"
  );

  return res;
} 

....
unsigned long start = cycle_count_val(); 
execute_benchmark();
unsigned long end = cycle_count_val();

printf("Benchmark performance(in clock cycles) = %ld \r\n", end-start);

非常感谢您的帮助, 菲尔

The processor architecture I am working with has a time tag counter that I wanna read out to make performance measurements. The time tag counter is memory mapped to the
address 0x90000008. I used the following routine to read the value from the time
tage counter, however the difference in the print out is always zero. Anyone an idea
what I am missing?

char* const ADDR = (char *) 0x90000008;

unsigned long cycle_count_val() {

   unsigned long res;

   asm volatile (

   "set ADDR, %%l0           \n\t"
   "ld [%%l0], %0            \n\t"

   : "=r" (res)
   :
   : "%l0"
  );

  return res;
} 

....
unsigned long start = cycle_count_val(); 
execute_benchmark();
unsigned long end = cycle_count_val();

printf("Benchmark performance(in clock cycles) = %ld \r\n", end-start);

Many thanks for your help,
Phil

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

离不开的别离 2024-10-13 10:08:28

我认为你不需要求助于汇编 - 为什么你不能直接阅读:

uint32_t tbr = (*((uint32_t volatile *) 0x90000008))

I don't think you need to resort to assember - why can't you just read from:

uint32_t tbr = (*((uint32_t volatile *) 0x90000008))
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文