Hi all We have a system running on mips64 xlr 732. Our major application process is binded on CPU5, In order to reduce the tlb miss of our major process, we took the following steps: (I) Use 2 number of tlb entries to map the elf code segment and data segment, say, tlb_entry[i] { code segment} and tlb_entry[i+1] {data segment} respectively. (II) Use another 6 number of tlb entries to map 6 reserved memory regions. In this way, our process can manipulate these 6 regions without any tlb miss. However we found that, the tlib miss frequency for (I) and (II) is very high. We guess the reson for this is that, we use some malloc operation,which leads to great tlb miss, and replace our tlb entries. So we took messures to isolate our tlb entries and ordinary tlb entres that were used for malloc. (III) In tlb_init function, we set the wried register to 6, so when ordinary tlb miss occured, the tlb refill hander would write a random tlb entry above 6, at the same time we can use our own 6 tlb entries to map whatever we want. After this, we found that, process is still sufferring from TLB miss in our 6 tlb entries. I'm totally exhausted about the tlb miss, I wonder if we can record the virtual region of tlb miss and the miss count in each region, in that way, I can find out which part leads to this tlb miss.That is , to record C0_BADVADDR in tlb miss. However I'm not sure how to add code in build_r4000_tlb_refill_handler function, for it is wrote in some strage way . Any suggestion on how to reduce tlb miss? Thx in advance.