MCPcopy Create free account
hub / github.com/WheretIB/nullc / GetNextAddress

Method GetNextAddress

NULLC/Executor_X86.cpp:1744–1756  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1742}
1743
1744unsigned int ExecutorX86::GetNextAddress()
1745{
1746 if(int(callstackTop - NULLC::stackTrace) < 0)
1747 return 0;
1748 unsigned int address = 0;
1749 for(; address < instAddress.size(); address++)
1750 {
1751 if(*callstackTop < (unsigned int)(long long)instAddress[address])
1752 break;
1753 }
1754 callstackTop--;
1755 return address - 1;
1756}
1757
1758void* ExecutorX86::GetStackStart()
1759{

Callers

nothing calls this directly

Calls 1

sizeMethod · 0.45

Tested by

no test coverage detected