Searched hist:8500 (Results 1 - 1 of 1) sorted by relevance

/gem5/src/arch/x86/isa/
H A Doperands.isadiff 8500:5bae9eee9482 Sun Aug 14 02:03:00 EDT 2011 Gabe Black <gblack@eecs.umich.edu> X86: Use IsSquashAfter if an instruction could affect fetch translation.

Control register operands are set up so that writing to them is serialize
after, serialize before, and non-speculative. These are probably overboard,
but they should usually be safe. Unfortunately there are times when even these
aren't enough. If an instruction modifies state that affects fetch, later
serialized instructions which come after it might have already gone through
fetch and decode by the time it commits. These instructions may have been
translated incorrectly or interpretted incorrectly and need to be destroyed.
This change modifies instructions which will or may have this behavior so that
they use the IsSquashAfter flag when necessary.

Completed in 8 milliseconds