Once upon a time, to write x86 assembler, for example, you would have instructions stating "load the EDX register with the value 5", "increment the EDX" register, etc. With modern CPUs that have 4 cores (or even more), at the machine code level does it just look like there are 4 separate CPUs (i.e. are there just 4 distinct "EDX" registers) ?
Exactly. There are 4 sets of registers, including 4 separate instruction pointers.
If so, when you say "increment the EDX register", what determines which CPU's EDX register is incremented?
The CPU that executed that instruction, naturally. Think of it as 4 entirely different microprocessors that are simply sharing the same memory. Two or more of the cores might even happen to execute the same instruction at about the same time.
Is there a "CPU context" or "thread" concept in x86 assembler now?
No. The assembler just translates instructions like it always did. No changes there.
How does communication/synchronization between the cores work?
Since they share the same memory, it's mostly a matter of program logic. However, there is an inter-processor interrupt mechanism.
If you were writing an operating system, what mechanism is exposed via hardware to allow you to schedule execution on different cores?
Really, they schedule themselves. Once they are all started (that does take some work) they are all running at the same time. Since they are all running the same kernel image, that kernel is simply written in such a way that the different cores will cooperate and, for example, divide up the Unix or Windows threads so that two cores don't try to run the same program at the same time. So, simplified, in the OS scheduler a core will set a lock, pick a process to run, set a flag saying it is running, and clear the lock. The next core that enters the scheduler code will pick a process that is not yet running purely based on the flags.
Is it some special priviledged instruction(s)?
No. The cores are just all running in the same memory with the same old instructions, mostly.
If you were writing an optimizing compiler/bytecode VM for a multicore CPU, what would you need to know specifically about, say, x86 to make it generate code that runs efficiently across all the cores?
You run the same code as before. It's the Unix or Windows kernel that needed to change.
You could summarize my question as "What changes have been made to x86 machine code to support multi-core functionality?"
Nothing was necessary. The first SMP systems used the exact same instruction set as uniprocessors. Now, there has been a great deal of x86 architecture evolution and zillions of new instructions to make things go faster, but none were necessary for SMP.
For more information, see the Intel Multiprocessor Specification.