Home | History | Annotate | Download | only in qemu

Lines Matching defs:md

1758     target_long (*get_value)(const struct MonitorDef *md, int val);
1763 static target_long monitor_get_pc (const struct MonitorDef *md, int val)
1773 static target_long monitor_get_ccr (const struct MonitorDef *md, int val)
1789 static target_long monitor_get_msr (const struct MonitorDef *md, int val)
1797 static target_long monitor_get_xer (const struct MonitorDef *md, int val)
1805 static target_long monitor_get_decr (const struct MonitorDef *md, int val)
1813 static target_long monitor_get_tbu (const struct MonitorDef *md, int val)
1821 static target_long monitor_get_tbl (const struct MonitorDef *md, int val)
1832 static target_long monitor_get_psr (const struct MonitorDef *md, int val)
1841 static target_long monitor_get_reg(const struct MonitorDef *md, int val)
2100 const MonitorDef *md;
2103 for(md = monitor_defs; md->name != NULL; md++) {
2104 if (compare_cmd(name, md->name)) {
2105 if (md->get_value) {
2106 *pval = md->get_value(md, md->offset);
2111 ptr = (uint8_t *)env + md->offset;
2112 switch(md->type) {