Files
Pyarmor-Static-Unpack-1shot/pyc_code.cpp

54 lines
1.8 KiB
C++
Raw Normal View History

2011-10-23 17:48:10 -07:00
#include "pyc_code.h"
#include "pyc_module.h"
2009-07-24 08:35:21 +00:00
#include "data.h"
void PycCode::load(PycData* stream, PycModule* mod)
{
if (mod->verCompare(1, 3) >= 0 && mod->verCompare(2, 3) < 0)
2009-07-24 08:35:21 +00:00
m_argCount = stream->get16();
else if (mod->verCompare(2, 3) >= 0)
2009-07-24 08:35:21 +00:00
m_argCount = stream->get32();
if (mod->majorVer() >= 3)
2009-07-24 08:35:21 +00:00
m_kwOnlyArgCount = stream->get32();
if (mod->verCompare(1, 3) >= 0 && mod->verCompare(2, 3) < 0)
2009-07-24 08:35:21 +00:00
m_numLocals = stream->get16();
else if (mod->verCompare(2, 3) >= 0)
2009-07-24 08:35:21 +00:00
m_numLocals = stream->get32();
if (mod->verCompare(1, 5) >= 0 && mod->verCompare(2, 3) < 0)
2009-07-24 08:35:21 +00:00
m_stackSize = stream->get16();
else if (mod->verCompare(2, 3) >= 0)
2009-07-24 08:35:21 +00:00
m_stackSize = stream->get32();
if (mod->verCompare(1, 3) >= 0 && mod->verCompare(2, 3) < 0)
2009-07-24 08:35:21 +00:00
m_flags = stream->get16();
else if (mod->verCompare(2, 3) >= 0)
2009-07-24 08:35:21 +00:00
m_flags = stream->get32();
m_code = LoadObject(stream, mod).cast<PycString>();
m_consts = LoadObject(stream, mod).cast<PycTuple>();
m_names = LoadObject(stream, mod).cast<PycTuple>();
if (mod->verCompare(1, 3) >= 0)
2009-07-24 08:35:21 +00:00
m_varNames = LoadObject(stream, mod).cast<PycTuple>();
if (mod->verCompare(2, 1) >= 0)
2009-07-24 08:35:21 +00:00
m_freeVars = LoadObject(stream, mod).cast<PycTuple>();
if (mod->verCompare(2, 1) >= 0)
2009-07-24 08:35:21 +00:00
m_cellVars = LoadObject(stream, mod).cast<PycTuple>();
m_fileName = LoadObject(stream, mod).cast<PycString>();
m_name = LoadObject(stream, mod).cast<PycString>();
if (mod->verCompare(1, 5) >= 0 && mod->verCompare(2, 3) < 0)
2009-07-24 08:35:21 +00:00
m_firstLine = stream->get16();
else if (mod->verCompare(2, 3) >= 0)
2009-07-24 08:35:21 +00:00
m_firstLine = stream->get32();
if (mod->verCompare(1, 5) >= 0)
2009-07-24 08:35:21 +00:00
m_lnTable = LoadObject(stream, mod).cast<PycString>();
}