private void MutateRuntime()
        {
            IDarksVMSettings settings = this.rt.Descriptor.Settings;

            RuntimePatcher.Patch(this.RTModule, settings.ExportDbgInfo, settings.DoStackWalk);
            this.constants.InjectConstants(this.RTModule, this.rt.Descriptor, this.helpers);
            new Renamer(this.rt.Descriptor.Random.Next()).Process(this.RTModule);
        }
Esempio n. 2
0
        private void MutateRuntime()
        {
            var settings = rt.Descriptor.Settings;

            RuntimePatcher.Patch(RTModule, settings.ExportDbgInfo, settings.DoStackWalk);
            constants.InjectConstants(RTModule, rt.Descriptor, helpers);
            new Renamer(rt.Descriptor.Random.Next()).Process(RTModule);
        }