nir: lower iabs(x) to imax(x, ineg(x))
Microsoft's DXIL is based on LLVM, which doesn't have an integer ABS opcode, but instead needs it lowered to NEG + MAX. We need to do this with an option, to prevent an already existing optimization rule from undoing this.
Edited by Erik Faye-Lund