Some sources I looked at listed some flags behavior as undefined for some instructions, while different sources list unaffected. I know that undefined behavior of flags shouldn't be looked at, but what about unaffected behavior? Are they the same things?

有帮助吗?

解决方案

No, they are not the same thing.

Unaffected means exactly what it says. It will not change the value of the flags register.

Undefined behavior means that the architecture can do whatever it wants with the flags register.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top