| 339 | |
| 340 | |
| 341 | RegisterValue CallingConvention::GetIncomingRegisterValue(uint32_t reg, Function*) |
| 342 | { |
| 343 | uint32_t regStack = GetArchitecture()->GetRegisterStackForRegister(reg); |
| 344 | if ((regStack != BN_INVALID_REGISTER) && (reg == GetArchitecture()->GetRegisterStackInfo(regStack).stackTopReg)) |
| 345 | { |
| 346 | RegisterValue value; |
| 347 | value.state = ConstantValue; |
| 348 | value.value = 0; |
| 349 | return value; |
| 350 | } |
| 351 | return RegisterValue(); |
| 352 | } |
| 353 | |
| 354 | |
| 355 | RegisterValue CallingConvention::GetIncomingFlagValue(uint32_t, Function*) |
no test coverage detected