Commits

Nadav Rotem committed 1140d7b12dc
[Mangler] Accelerate the decoding of characters from APInt. Instead of dividing the number character by character we now extract 8 characters at once into a local 64bit variable and process this variable locally. It is much faster to process a local variable because unlike APInt we don't need to shift lots of words around or perform long division.