| 1838 | } |
| 1839 | |
| 1840 | String* BfModule::GetStringPoolString(BfIRValue constantStr, BfIRConstHolder * constHolder) |
| 1841 | { |
| 1842 | int strId = GetStringPoolIdx(constantStr, constHolder); |
| 1843 | if (strId != -1) |
| 1844 | { |
| 1845 | auto& entry = mContext->mStringObjectIdMap[strId]; |
| 1846 | return &entry.mString; |
| 1847 | } |
| 1848 | return NULL; |
| 1849 | } |
| 1850 | |
| 1851 | CeDbgState* BfModule::GetCeDbgState() |
| 1852 | { |
no outgoing calls
no test coverage detected