Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Can a context switch be implemented by a flip flop stored in the Translation Lookaside Buffer?

I can't seem to find any information of how context switches are implemented in terms of hardware. I only managed to find out that the TLB has to be flushed on context switches, which may imply that a FF is used... or??? Any hints?

share|improve this question

closed as not a real question by casperOne Nov 21 '12 at 13:11

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

What architecture are we talking here - IA32/AMD64?

If so, you have two options - a hardware context switch (IA32, legacy) or software context switch (any CPU mode and equally applicable to any CPU with no hardware context switching). Hardware context switching is covered in depth in the Intel Software Developers Manuals, which you should have if you are OS Dev'ing on x86. If you are software context switching, the idea is to push all registers on to the stack, store the value of the stack pointer and then switch stacks.

As a part of context switching, you will generally switch to a new virtual memory space and reload CR3 (or its alternative on non-x86 processors). This will automatically flush the TLB except for pages marked as "Global". If you want a more in-depth answer, you need to be a bit more specific with the question.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.