| 240 | } |
| 241 | |
| 242 | void BfContext::EnsureHotMangledVirtualMethodName(BfMethodInstance* methodInstance) |
| 243 | { |
| 244 | BP_ZONE("BfContext::EnsureHotMangledVirtualMethodName"); |
| 245 | if ((methodInstance != NULL) && (methodInstance->GetMethodInfoEx()->mMangledName.IsEmpty())) |
| 246 | BfMangler::Mangle(methodInstance->GetMethodInfoEx()->mMangledName, mCompiler->GetMangleKind(), methodInstance); |
| 247 | } |
| 248 | |
| 249 | void BfContext::EnsureHotMangledVirtualMethodNames() |
| 250 | { |
no test coverage detected