I know assembly can be used right within C++. I've never tried it as I don't know much about assembly but I did research it a bit out of curiosity.
What would be the advantages of using assembly in C++? Is there any performance advantage or does the optimizer take care of that with regular C++ code?
I may possibly be writing a very large scale game server application and if assembly can increase performance I might start learning it and throw that in where some very fast calculations need to be done in batches. -O3 optimization is very fast but if I can get faster, then even better.
What would be the advantages of using assembly in C++? Is there any performance advantage or does the optimizer take care of that with regular C++ code?
I may possibly be writing a very large scale game server application and if assembly can increase performance I might start learning it and throw that in where some very fast calculations need to be done in batches. -O3 optimization is very fast but if I can get faster, then even better.
