• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/powerpc/kvm/

Lines Matching refs:emulated

126 	enum emulation_result emulated = EMULATE_DONE;
150 emulated = kvmppc_handle_load(run, vcpu, rt, 4, 1);
155 emulated = kvmppc_handle_load(run, vcpu, rt, 1, 1);
167 emulated = kvmppc_handle_load(run, vcpu, rt, 1, 1);
173 emulated = kvmppc_handle_store(run, vcpu,
180 emulated = kvmppc_handle_store(run, vcpu,
194 emulated = kvmppc_handle_store(run, vcpu,
202 emulated = kvmppc_handle_loads(run, vcpu, rt, 2, 1);
207 emulated = kvmppc_handle_load(run, vcpu, rt, 2, 1);
219 emulated = kvmppc_handle_load(run, vcpu, rt, 2, 1);
268 emulated = kvmppc_core_emulate_mfspr(vcpu, sprn, rt);
269 if (emulated == EMULATE_FAIL) {
282 emulated = kvmppc_handle_store(run, vcpu,
296 emulated = kvmppc_handle_store(run, vcpu,
331 emulated = kvmppc_core_emulate_mtspr(vcpu, sprn, rs);
332 if (emulated == EMULATE_FAIL)
341 * emulated DMA either goes through the dcache as
348 emulated = kvmppc_handle_load(run, vcpu, rt, 4, 0);
359 emulated = kvmppc_handle_store(run, vcpu,
366 emulated = kvmppc_handle_load(run, vcpu, rt, 2, 0);
374 emulated = kvmppc_handle_store(run, vcpu,
381 emulated = EMULATE_FAIL;
387 emulated = kvmppc_handle_load(run, vcpu, rt, 4, 1);
393 emulated = kvmppc_handle_load(run, vcpu, rt, 4, 1);
399 emulated = kvmppc_handle_load(run, vcpu, rt, 1, 1);
405 emulated = kvmppc_handle_load(run, vcpu, rt, 1, 1);
411 emulated = kvmppc_handle_store(run, vcpu,
419 emulated = kvmppc_handle_store(run, vcpu,
427 emulated = kvmppc_handle_store(run, vcpu,
435 emulated = kvmppc_handle_store(run, vcpu,
443 emulated = kvmppc_handle_load(run, vcpu, rt, 2, 1);
449 emulated = kvmppc_handle_load(run, vcpu, rt, 2, 1);
455 emulated = kvmppc_handle_loads(run, vcpu, rt, 2, 1);
461 emulated = kvmppc_handle_loads(run, vcpu, rt, 2, 1);
467 emulated = kvmppc_handle_store(run, vcpu,
475 emulated = kvmppc_handle_store(run, vcpu,
482 emulated = EMULATE_FAIL;
485 if (emulated == EMULATE_FAIL) {
486 emulated = kvmppc_core_emulate_op(run, vcpu, inst, &advance);
487 if (emulated == EMULATE_AGAIN) {
489 } else if (emulated == EMULATE_FAIL) {
497 trace_kvm_ppc_instr(inst, kvmppc_get_pc(vcpu), emulated);
499 /* Advance past emulated instruction. */
503 return emulated;