Tool/software:
I've read as many of the user's guides and compiler manual sections as I can find on this topic, but I'm still trying to figure out for sure what the requirements around NOP's and EINT are. What seem to be the most relevant sections below for reference:
The need for a NOP() after DINT is obvious to me. That next instruction can still be interrupted, which could be surprising if you think interrupts are disabled and break some atomic contract you have.
The need for a NOP() after EINT also makes some sense to me, although it's a little weaker. If you have interrupts pending while GIE is unset, and you want to guarantee those are serviced before the next instruction after the EINT, you need a NOP guard. I at least can understand this, but I question whether or not your code is very robust if it relies on this. Couldn't the interrupt be asynchronously set during the NOP after EINT in which case you would start servicing it after that first instruction already made it in anyway?
I can also understand (the somewhat pathalogical) case where if you disable, then immediately re-enable interrupts there must be a NOP between.
What I don't understand is why you would need a NOP before EINT in general outside these specific circumstances. However, major RTOS projects seem to think this is the case, and CCS emits warnings about this. I personally, could really use some clarity on why these NOPs are required.
To summarize my question(s):
1) When is a NOP before EINT required?
2) What is synchronization hazard from not having a NOP before EINT?
3) If every DINT is followed by a NOP and every EINT is followed by a NOP is there still any hazard?
Thanks for any clarity you can provide!