mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-03 15:53:54 -06:00
TCG variable type checking.
Signed-off-by: Paul Brook <paul@codesourcery.com> git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5729 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
30913bae9a
commit
a7812ae412
37 changed files with 6201 additions and 5766 deletions
|
@ -22,6 +22,7 @@
|
|||
|
||||
#include "host-utils.h"
|
||||
|
||||
#include "helper.h"
|
||||
/*****************************************************************************/
|
||||
/* Exceptions processing helpers */
|
||||
|
||||
|
@ -1659,6 +1660,26 @@ void r4k_do_tlbr (void)
|
|||
(tlb->C1 << 3) | (tlb->PFN[1] >> 6);
|
||||
}
|
||||
|
||||
void do_tlbwi(void)
|
||||
{
|
||||
env->tlb->do_tlbwi();
|
||||
}
|
||||
|
||||
void do_tlbwr(void)
|
||||
{
|
||||
env->tlb->do_tlbwr();
|
||||
}
|
||||
|
||||
void do_tlbp(void)
|
||||
{
|
||||
env->tlb->do_tlbp();
|
||||
}
|
||||
|
||||
void do_tlbr(void)
|
||||
{
|
||||
env->tlb->do_tlbr();
|
||||
}
|
||||
|
||||
/* Specials */
|
||||
target_ulong do_di (void)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue