Generate code for OPvecfill (broadcast). OPvecfill takes the single value in e1 and fills the vector type with it.
Generate code for vector "store" operations. The tree e must look like: (op1 OPvecsto (op OPparam op2)) where op is the store instruction STOxxxx.
Determine if operation should be rewritten as a VEX operation; and do so.
VEX prefixes can be 2 or 3 bytes. If it must be 3 bytes, set the CFvex3 flag.
Is operator a store operator?
Do simple orthogonal operators for XMM registers.
Determine if lvalue e is a vector aligned on a 16/32 byte boundary. Assume it to be aligned unless can prove it is not.
Generate code for conversion using SSE2 instructions.
Generate code for an assignment using XMM registers.
Get correct load operator based on type. It is important to use the right one even if the number of bits moved is the same, as there are performance consequences for using the wrong one.
Negate operator
Generate code for op=
Generate code for post increment and post decrement.
Get correct store operator based on type.
Compiler implementation of the D programming language.