search for: r130160

Displaying 1 result from an estimated 1 matches for "r130160".

Did you mean: 130160
2011 Apr 25
1
[LLVMdev] Inefficiency in Intrinsic::getName in Function.cpp?
I was looking over Function.cpp and saw that for every call to Intrinsic::getName, the entire intrinsic table (about a thousand references to strings) gets copied over for the initialization of Table. Is there a reason for why this is done, or would it be better for Table to be static, so that this initialization only happens on the first call? Perhaps this is optimized away for the release build,