Home - Summaries: (main) : (py3.11) : (py3.12) : Everything - Nightly builds - Benchmarks - RPython - Builders - About

jit/backend/x86/test/test_zrpy_releasegil.py::TestShadowStack::()::test_simple

cls = <class 'rpython.jit.backend.x86.test.test_zrpy_releasegil.TestShadowStack'>

    def setup_class(cls):
        funcs = []
        name_to_func = {}
        for fullname in dir(cls):
            if not fullname.startswith('define'):
                continue
            definefunc = getattr(cls, fullname)
            _, name = fullname.split('_', 1)
            beforefunc, loopfunc, afterfunc = definefunc.im_func(cls)
            if beforefunc is None:
                def beforefunc(n, x):
                    return n, x, None, None, None, None, None, None, None, None, None, ''
            if afterfunc is None:
                def afterfunc(n, x, x0, x1, x2, x3, x4, x5, x6, x7, l, s):
                    pass
            beforefunc.__name__ = 'before_'+name
            loopfunc.__name__ = 'loop_'+name
            afterfunc.__name__ = 'after_'+name
            funcs.append((beforefunc, loopfunc, afterfunc))
            assert name not in name_to_func
            name_to_func[name] = len(name_to_func)
        print(name_to_func)
        def allfuncs(name, n):
            x = X()
            x.foo = 2
            main_allfuncs(name, n, x)
            x.foo = 5
            return weakref.ref(x)
        def main_allfuncs(name, n, x):
            num = name_to_func[name]
            n, x, x0, x1, x2, x3, x4, x5, x6, x7, l, s = funcs[num][0](n, x)
            while n > 0:
                myjitdriver.can_enter_jit(num=num, n=n, x=x, x0=x0, x1=x1,
                        x2=x2, x3=x3, x4=x4, x5=x5, x6=x6, x7=x7, l=l, s=s)
                myjitdriver.jit_merge_point(num=num, n=n, x=x, x0=x0, x1=x1,
                        x2=x2, x3=x3, x4=x4, x5=x5, x6=x6, x7=x7, l=l, s=s)
    
                n, x, x0, x1, x2, x3, x4, x5, x6, x7, l, s = funcs[num][1](
                        n, x, x0, x1, x2, x3, x4, x5, x6, x7, l, s)
            funcs[num][2](n, x, x0, x1, x2, x3, x4, x5, x6, x7, l, s)
        myjitdriver = JitDriver(greens = ['num'],
                                reds = ['n', 'x', 'x0', 'x1', 'x2', 'x3', 'x4',
                                        'x5', 'x6', 'x7', 'l', 's'], is_recursive=True)
        cls.main_allfuncs = staticmethod(main_allfuncs)
        cls.name_to_func = name_to_func
        OLD_DEBUG = GcLLDescr_framework.DEBUG
        try:
            GcLLDescr_framework.DEBUG = True
            cls.cbuilder = compile(get_entry(allfuncs), cls.gc,
                                   gcrootfinder=cls.gcrootfinder, jit=True,
>                                  thread=True)

jit\backend\llsupport\test\zrpy_gc_test.py:187: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
jit\backend\llsupport\test\zrpy_gc_test.py:120: in compile
    cbuilder.compile()
translator\c\genc.py:341: in compile
    extra_opts)
translator\platform\windows.py:574: in execute_makefile
    self._handle_error(returncode, stdout, stderr, path.join('make'))
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

self = <MsvcPlatform cc=cl.exe>, returncode = 2
stdout = "\tcl.exe stdafx.c /c /nologo /MD  /O2 -DPYPY_CPU_HAS_STANDARD_PRECISION  -DPYPY_MAKEFILE /Ycstdafx.h /Fpstdafx.pch /F...\nrpython_memory_gc.c(2449): error C2037: left of 'ullTotalPhys' specifies undefined struct/union 'MEMORYSTATUSEX'\r\n"
stderr = '\tcl.exe stdafx.c /c /nologo /MD  /O2 -DPYPY_CPU_HAS_STANDARD_PRECISION  -DPYPY_MAKEFILE /Ycstdafx.h /Fpstdafx.pch /F...py\\pypy\\rpython"\\rlib\\rvmprof\\src  /I"D:\\a\\pypy\\pypy\\rpython"\\rlib\\src\' : return code \'0x2\'\r\nStop.\r\n'
outname = local('c:\\users\\runner~1\\appdata\\local\\temp\\usession-pypy-HEAD-41\\testing_1\\make')

    def _handle_error(self, returncode, stdout, stderr, outname):
        if returncode != 0:
            # Microsoft compilers write compilation errors to stdout
            stderr = stdout + stderr
            errorfile = outname.new(ext='errors')
            errorfile.write(stderr, mode='wb')
            if self.log_errors:
                stderrlines = stderr.splitlines()
                for line in stderrlines:
                    log.Error(line)
                # ^^^ don't use ERROR, because it might actually be fine.
                # Also, ERROR confuses lib-python/conftest.py.
>           raise CompilationError(stdout, stderr)
E           CompilationError: CompilationError(err="""
E           		cl.exe stdafx.c /c /nologo /MD  /O2 -DPYPY_CPU_HAS_STANDARD_PRECISION  -DPYPY_MAKEFILE /Ycstdafx.h /Fpstdafx.pch /FIstdafx.h /I/include  /I"D:\a\pypy\pypy\rpython"\translator\c  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\src  /I"D:\a\pypy\pypy\rpython"\rlib\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src
E           	stdafx.c
E           		cl.exe /nologo /MD  /O2 -DPYPY_CPU_HAS_STANDARD_PRECISION  -DPYPY_MAKEFILE /Yustdafx.h /Fpstdafx.pch /FIstdafx.h /Fotesting_1.obj /c testing_1.c /I/include  /I"D:\a\pypy\pypy\rpython"\translator\c  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\src  /I"D:\a\pypy\pypy\rpython"\rlib\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src
E           	testing_1.c
E           		cl.exe /nologo /MD  /O2 -DPYPY_CPU_HAS_STANDARD_PRECISION  -DPYPY_MAKEFILE /Yustdafx.h /Fpstdafx.pch /FIstdafx.h /Fodata_rpython_flowspace.obj /c data_rpython_flowspace.c /I/include  /I"D:\a\pypy\pypy\rpython"\translator\c  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\src  /I"D:\a\pypy\pypy\rpython"\rlib\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src
E           	data_rpython_flowspace.c
E           		cl.exe /nologo /MD  /O2 -DPYPY_CPU_HAS_STANDARD_PRECISION  -DPYPY_MAKEFILE /Yustdafx.h /Fpstdafx.pch /FIstdafx.h /Fodata_rpython_jit_backend.obj /c data_rpython_jit_backend.c /I/include  /I"D:\a\pypy\pypy\rpython"\translator\c  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\src  /I"D:\a\pypy\pypy\rpython"\rlib\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src
E           	data_rpython_jit_backend.c
E           		cl.exe /nologo /MD  /O2 -DPYPY_CPU_HAS_STANDARD_PRECISION  -DPYPY_MAKEFILE /Yustdafx.h /Fpstdafx.pch /FIstdafx.h /Fodata_rpython_jit_backend_llsupport.obj /c data_rpython_jit_backend_llsupport.c /I/include  /I"D:\a\pypy\pypy\rpython"\translator\c  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\src  /I"D:\a\pypy\pypy\rpython"\rlib\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src
E           	data_rpython_jit_backend_llsupport.c
E           		cl.exe /nologo /MD  /O2 -DPYPY_CPU_HAS_STANDARD_PRECISION  -DPYPY_MAKEFILE /Yustdafx.h /Fpstdafx.pch /FIstdafx.h /Fodata_rpython_jit_backend_llsupport_test.obj /c data_rpython_jit_backend_llsupport_test.c /I/include  /I"D:\a\pypy\pypy\rpython"\translator\c  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\src  /I"D:\a\pypy\pypy\rpython"\rlib\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src
E           	data_rpython_jit_backend_llsupport_test.c
E           		cl.exe /nologo /MD  /O2 -DPYPY_CPU_HAS_STANDARD_PRECISION  -DPYPY_MAKEFILE /Yustdafx.h /Fpstdafx.pch /FIstdafx.h /Fodata_rpython_jit_backend_x86.obj /c data_rpython_jit_backend_x86.c /I/include  /I"D:\a\pypy\pypy\rpython"\translator\c  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\src  /I"D:\a\pypy\pypy\rpython"\rlib\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src
E           	data_rpython_jit_backend_x86.c
E           		cl.exe /nologo /MD  /O2 -DPYPY_CPU_HAS_STANDARD_PRECISION  -DPYPY_MAKEFILE /Yustdafx.h /Fpstdafx.pch /FIstdafx.h /Fodata_rpython_jit_codewriter.obj /c data_rpython_jit_codewriter.c /I/include  /I"D:\a\pypy\pypy\rpython"\translator\c  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\src  /I"D:\a\pypy\pypy\rpython"\rlib\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src
E           	data_rpython_jit_codewriter.c
E           		cl.exe /nologo /MD  /O2 -DPYPY_CPU_HAS_STANDARD_PRECISION  -DPYPY_MAKEFILE /Yustdafx.h /Fpstdafx.pch /FIstdafx.h /Fodata_rpython_jit_metainterp.obj /c data_rpython_jit_metainterp.c /I/include  /I"D:\a\pypy\pypy\rpython"\translator\c  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\src  /I"D:\a\pypy\pypy\rpython"\rlib\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src
E           	data_rpython_jit_metainterp.c
E           		cl.exe /nologo /MD  /O2 -DPYPY_CPU_HAS_STANDARD_PRECISION  -DPYPY_MAKEFILE /Yustdafx.h /Fpstdafx.pch /FIstdafx.h /Fodata_rpython_jit_metainterp_optimizeopt.obj /c data_rpython_jit_metainterp_optimizeopt.c /I/include  /I"D:\a\pypy\pypy\rpython"\translator\c  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\src  /I"D:\a\pypy\pypy\rpython"\rlib\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src
E           	data_rpython_jit_metainterp_optimizeopt.c
E           		cl.exe /nologo /MD  /O2 -DPYPY_CPU_HAS_STANDARD_PRECISION  -DPYPY_MAKEFILE /Yustdafx.h /Fpstdafx.pch /FIstdafx.h /Fodata_rpython_memory_gc.obj /c data_rpython_memory_gc.c /I/include  /I"D:\a\pypy\pypy\rpython"\translator\c  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\src  /I"D:\a\pypy\pypy\rpython"\rlib\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src
E           	data_rpython_memory_gc.c
E           		cl.exe /nologo /MD  /O2 -DPYPY_CPU_HAS_STANDARD_PRECISION  -DPYPY_MAKEFILE /Yustdafx.h /Fpstdafx.pch /FIstdafx.h /Fodata_rpython_memory_gctransform.obj /c data_rpython_memory_gctransform.c /I/include  /I"D:\a\pypy\pypy\rpython"\translator\c  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\src  /I"D:\a\pypy\pypy\rpython"\rlib\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src
E           	data_rpython_memory_gctransform.c
E           		cl.exe /nologo /MD  /O2 -DPYPY_CPU_HAS_STANDARD_PRECISION  -DPYPY_MAKEFILE /Yustdafx.h /Fpstdafx.pch /FIstdafx.h /Fodata_rpython_rlib.obj /c data_rpython_rlib.c /I/include  /I"D:\a\pypy\pypy\rpython"\translator\c  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\src  /I"D:\a\pypy\pypy\rpython"\rlib\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src
E           	data_rpython_rlib.c
E           		cl.exe /nologo /MD  /O2 -DPYPY_CPU_HAS_STANDARD_PRECISION  -DPYPY_MAKEFILE /Yustdafx.h /Fpstdafx.pch /FIstdafx.h /Fodata_rpython_rlib_rjitlog.obj /c data_rpython_rlib_rjitlog.c /I/include  /I"D:\a\pypy\pypy\rpython"\translator\c  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\src  /I"D:\a\pypy\pypy\rpython"\rlib\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src
E           	data_rpython_rlib_rjitlog.c
E           		cl.exe /nologo /MD  /O2 -DPYPY_CPU_HAS_STANDARD_PRECISION  -DPYPY_MAKEFILE /Yustdafx.h /Fpstdafx.pch /FIstdafx.h /Fodata_rpython_rtyper.obj /c data_rpython_rtyper.c /I/include  /I"D:\a\pypy\pypy\rpython"\translator\c  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\src  /I"D:\a\pypy\pypy\rpython"\rlib\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src
E           	data_rpython_rtyper.c
E           		cl.exe /nologo /MD  /O2 -DPYPY_CPU_HAS_STANDARD_PRECISION  -DPYPY_MAKEFILE /Yustdafx.h /Fpstdafx.pch /FIstdafx.h /Fodata_rpython_rtyper_lltypesystem.obj /c data_rpython_rtyper_lltypesystem.c /I/include  /I"D:\a\pypy\pypy\rpython"\translator\c  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\src  /I"D:\a\pypy\pypy\rpython"\rlib\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src
E           	data_rpython_rtyper_lltypesystem.c
E           		cl.exe /nologo /MD  /O2 -DPYPY_CPU_HAS_STANDARD_PRECISION  -DPYPY_MAKEFILE /Yustdafx.h /Fpstdafx.pch /FIstdafx.h /Fononfuncnodes.obj /c nonfuncnodes.c /I/include  /I"D:\a\pypy\pypy\rpython"\translator\c  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\src  /I"D:\a\pypy\pypy\rpython"\rlib\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src
E           	nonfuncnodes.c
E           		cl.exe /nologo /MD  /O2 -DPYPY_CPU_HAS_STANDARD_PRECISION  -DPYPY_MAKEFILE /Yustdafx.h /Fpstdafx.pch /FIstdafx.h /Fodata_rpython_jit_backend_llsupport_1.obj /c data_rpython_jit_backend_llsupport_1.c /I/include  /I"D:\a\pypy\pypy\rpython"\translator\c  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\src  /I"D:\a\pypy\pypy\rpython"\rlib\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src
E           	data_rpython_jit_backend_llsupport_1.c
E           		cl.exe /nologo /MD  /O2 -DPYPY_CPU_HAS_STANDARD_PRECISION  -DPYPY_MAKEFILE /Yustdafx.h /Fpstdafx.pch /FIstdafx.h /Fodata_rpython_jit_backend_llsupport_test_1.obj /c data_rpython_jit_backend_llsupport_test_1.c /I/include  /I"D:\a\pypy\pypy\rpython"\translator\c  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\src  /I"D:\a\pypy\pypy\rpython"\rlib\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src
E           	data_rpython_jit_backend_llsupport_test_1.c
E           		cl.exe /nologo /MD  /O2 -DPYPY_CPU_HAS_STANDARD_PRECISION  -DPYPY_MAKEFILE /Yustdafx.h /Fpstdafx.pch /FIstdafx.h /Fodata_rpython_jit_backend_x86_1.obj /c data_rpython_jit_backend_x86_1.c /I/include  /I"D:\a\pypy\pypy\rpython"\translator\c  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\src  /I"D:\a\pypy\pypy\rpython"\rlib\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src
E           	data_rpython_jit_backend_x86_1.c
E           		cl.exe /nologo /MD  /O2 -DPYPY_CPU_HAS_STANDARD_PRECISION  -DPYPY_MAKEFILE /Yustdafx.h /Fpstdafx.pch /FIstdafx.h /Fodata_rpython_jit_metainterp_1.obj /c data_rpython_jit_metainterp_1.c /I/include  /I"D:\a\pypy\pypy\rpython"\translator\c  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\src  /I"D:\a\pypy\pypy\rpython"\rlib\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src
E           	data_rpython_jit_metainterp_1.c
E           		cl.exe /nologo /MD  /O2 -DPYPY_CPU_HAS_STANDARD_PRECISION  -DPYPY_MAKEFILE /Yustdafx.h /Fpstdafx.pch /FIstdafx.h /Fodata_rpython_memory_gc_1.obj /c data_rpython_memory_gc_1.c /I/include  /I"D:\a\pypy\pypy\rpython"\translator\c  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\src  /I"D:\a\pypy\pypy\rpython"\rlib\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src
E           	data_rpython_memory_gc_1.c
E           		cl.exe /nologo /MD  /O2 -DPYPY_CPU_HAS_STANDARD_PRECISION  -DPYPY_MAKEFILE /Yustdafx.h /Fpstdafx.pch /FIstdafx.h /Fodata_rpython_rlib_1.obj /c data_rpython_rlib_1.c /I/include  /I"D:\a\pypy\pypy\rpython"\translator\c  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\src  /I"D:\a\pypy\pypy\rpython"\rlib\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src
E           	data_rpython_rlib_1.c
E           		cl.exe /nologo /MD  /O2 -DPYPY_CPU_HAS_STANDARD_PRECISION  -DPYPY_MAKEFILE /Yustdafx.h /Fpstdafx.pch /FIstdafx.h /Fodata_rpython_rlib_rjitlog_1.obj /c data_rpython_rlib_rjitlog_1.c /I/include  /I"D:\a\pypy\pypy\rpython"\translator\c  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\src  /I"D:\a\pypy\pypy\rpython"\rlib\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src
E           	data_rpython_rlib_rjitlog_1.c
E           		cl.exe /nologo /MD  /O2 -DPYPY_CPU_HAS_STANDARD_PRECISION  -DPYPY_MAKEFILE /Yustdafx.h /Fpstdafx.pch /FIstdafx.h /Fodata_rpython_rlib_rvmprof.obj /c data_rpython_rlib_rvmprof.c /I/include  /I"D:\a\pypy\pypy\rpython"\translator\c  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\src  /I"D:\a\pypy\pypy\rpython"\rlib\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src
E           	data_rpython_rlib_rvmprof.c
E           		cl.exe /nologo /MD  /O2 -DPYPY_CPU_HAS_STANDARD_PRECISION  -DPYPY_MAKEFILE /Yustdafx.h /Fpstdafx.pch /FIstdafx.h /Fodata_rpython_rtyper_lltypesystem_1.obj /c data_rpython_rtyper_lltypesystem_1.c /I/include  /I"D:\a\pypy\pypy\rpython"\translator\c  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\src  /I"D:\a\pypy\pypy\rpython"\rlib\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src
E           	data_rpython_rtyper_lltypesystem_1.c
E           		cl.exe /nologo /MD  /O2 -DPYPY_CPU_HAS_STANDARD_PRECISION  -DPYPY_MAKEFILE /Yustdafx.h /Fpstdafx.pch /FIstdafx.h /Fodata_rpython_rtyper_lltypesystem_module.obj /c data_rpython_rtyper_lltypesystem_module.c /I/include  /I"D:\a\pypy\pypy\rpython"\translator\c  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\src  /I"D:\a\pypy\pypy\rpython"\rlib\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src
E           	data_rpython_rtyper_lltypesystem_module.c
E           		cl.exe /nologo /MD  /O2 -DPYPY_CPU_HAS_STANDARD_PRECISION  -DPYPY_MAKEFILE /Yustdafx.h /Fpstdafx.pch /FIstdafx.h /Foimplement.obj /c implement.c /I/include  /I"D:\a\pypy\pypy\rpython"\translator\c  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\src  /I"D:\a\pypy\pypy\rpython"\rlib\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src
E           	implement.c
E           	implement.c(82): warning C4133: 'function': incompatible types - from 'MEMORYSTATUSEX *' to 'LPMEMORYSTATUSEX'
E           		cl.exe /nologo /MD  /O2 -DPYPY_CPU_HAS_STANDARD_PRECISION  -DPYPY_MAKEFILE /Yustdafx.h /Fpstdafx.pch /FIstdafx.h /Forpython_flowspace.obj /c rpython_flowspace.c /I/include  /I"D:\a\pypy\pypy\rpython"\translator\c  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\src  /I"D:\a\pypy\pypy\rpython"\rlib\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src
E           	rpython_flowspace.c
E           		cl.exe /nologo /MD  /O2 -DPYPY_CPU_HAS_STANDARD_PRECISION  -DPYPY_MAKEFILE /Yustdafx.h /Fpstdafx.pch /FIstdafx.h /Forpython_jit_backend.obj /c rpython_jit_backend.c /I/include  /I"D:\a\pypy\pypy\rpython"\translator\c  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\src  /I"D:\a\pypy\pypy\rpython"\rlib\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src
E           	rpython_jit_backend.c
E           		cl.exe /nologo /MD  /O2 -DPYPY_CPU_HAS_STANDARD_PRECISION  -DPYPY_MAKEFILE /Yustdafx.h /Fpstdafx.pch /FIstdafx.h /Forpython_jit_backend_llsupport.obj /c rpython_jit_backend_llsupport.c /I/include  /I"D:\a\pypy\pypy\rpython"\translator\c  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\src  /I"D:\a\pypy\pypy\rpython"\rlib\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src
E           	rpython_jit_backend_llsupport.c
E           		cl.exe /nologo /MD  /O2 -DPYPY_CPU_HAS_STANDARD_PRECISION  -DPYPY_MAKEFILE /Yustdafx.h /Fpstdafx.pch /FIstdafx.h /Forpython_jit_backend_llsupport_test.obj /c rpython_jit_backend_llsupport_test.c /I/include  /I"D:\a\pypy\pypy\rpython"\translator\c  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\src  /I"D:\a\pypy\pypy\rpython"\rlib\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src
E           	rpython_jit_backend_llsupport_test.c
E           		cl.exe /nologo /MD  /O2 -DPYPY_CPU_HAS_STANDARD_PRECISION  -DPYPY_MAKEFILE /Yustdafx.h /Fpstdafx.pch /FIstdafx.h /Forpython_jit_backend_x86.obj /c rpython_jit_backend_x86.c /I/include  /I"D:\a\pypy\pypy\rpython"\translator\c  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\src  /I"D:\a\pypy\pypy\rpython"\rlib\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src
E           	rpython_jit_backend_x86.c
E           		cl.exe /nologo /MD  /O2 -DPYPY_CPU_HAS_STANDARD_PRECISION  -DPYPY_MAKEFILE /Yustdafx.h /Fpstdafx.pch /FIstdafx.h /Forpython_jit_backend_x86_1.obj /c rpython_jit_backend_x86_1.c /I/include  /I"D:\a\pypy\pypy\rpython"\translator\c  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\src  /I"D:\a\pypy\pypy\rpython"\rlib\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src
E           	rpython_jit_backend_x86_1.c
E           		cl.exe /nologo /MD  /O2 -DPYPY_CPU_HAS_STANDARD_PRECISION  -DPYPY_MAKEFILE /Yustdafx.h /Fpstdafx.pch /FIstdafx.h /Forpython_jit_backend_x86_2.obj /c rpython_jit_backend_x86_2.c /I/include  /I"D:\a\pypy\pypy\rpython"\translator\c  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\src  /I"D:\a\pypy\pypy\rpython"\rlib\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src
E           	rpython_jit_backend_x86_2.c
E           		cl.exe /nologo /MD  /O2 -DPYPY_CPU_HAS_STANDARD_PRECISION  -DPYPY_MAKEFILE /Yustdafx.h /Fpstdafx.pch /FIstdafx.h /Forpython_jit_backend_x86_3.obj /c rpython_jit_backend_x86_3.c /I/include  /I"D:\a\pypy\pypy\rpython"\translator\c  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\src  /I"D:\a\pypy\pypy\rpython"\rlib\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src
E           	rpython_jit_backend_x86_3.c
E           		cl.exe /nologo /MD  /O2 -DPYPY_CPU_HAS_STANDARD_PRECISION  -DPYPY_MAKEFILE /Yustdafx.h /Fpstdafx.pch /FIstdafx.h /Forpython_jit_codewriter.obj /c rpython_jit_codewriter.c /I/include  /I"D:\a\pypy\pypy\rpython"\translator\c  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\src  /I"D:\a\pypy\pypy\rpython"\rlib\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src
E           	rpython_jit_codewriter.c
E           		cl.exe /nologo /MD  /O2 -DPYPY_CPU_HAS_STANDARD_PRECISION  -DPYPY_MAKEFILE /Yustdafx.h /Fpstdafx.pch /FIstdafx.h /Forpython_jit_metainterp.obj /c rpython_jit_metainterp.c /I/include  /I"D:\a\pypy\pypy\rpython"\translator\c  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\src  /I"D:\a\pypy\pypy\rpython"\rlib\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src
E           	rpython_jit_metainterp.c
E           		cl.exe /nologo /MD  /O2 -DPYPY_CPU_HAS_STANDARD_PRECISION  -DPYPY_MAKEFILE /Yustdafx.h /Fpstdafx.pch /FIstdafx.h /Forpython_jit_metainterp_1.obj /c rpython_jit_metainterp_1.c /I/include  /I"D:\a\pypy\pypy\rpython"\translator\c  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\src  /I"D:\a\pypy\pypy\rpython"\rlib\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src
E           	rpython_jit_metainterp_1.c
E           		cl.exe /nologo /MD  /O2 -DPYPY_CPU_HAS_STANDARD_PRECISION  -DPYPY_MAKEFILE /Yustdafx.h /Fpstdafx.pch /FIstdafx.h /Forpython_jit_metainterp_2.obj /c rpython_jit_metainterp_2.c /I/include  /I"D:\a\pypy\pypy\rpython"\translator\c  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\src  /I"D:\a\pypy\pypy\rpython"\rlib\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src
E           	rpython_jit_metainterp_2.c
E           		cl.exe /nologo /MD  /O2 -DPYPY_CPU_HAS_STANDARD_PRECISION  -DPYPY_MAKEFILE /Yustdafx.h /Fpstdafx.pch /FIstdafx.h /Forpython_jit_metainterp_3.obj /c rpython_jit_metainterp_3.c /I/include  /I"D:\a\pypy\pypy\rpython"\translator\c  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\src  /I"D:\a\pypy\pypy\rpython"\rlib\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src
E           	rpython_jit_metainterp_3.c
E           		cl.exe /nologo /MD  /O2 -DPYPY_CPU_HAS_STANDARD_PRECISION  -DPYPY_MAKEFILE /Yustdafx.h /Fpstdafx.pch /FIstdafx.h /Forpython_jit_metainterp_optimizeopt.obj /c rpython_jit_metainterp_optimizeopt.c /I/include  /I"D:\a\pypy\pypy\rpython"\translator\c  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\src  /I"D:\a\pypy\pypy\rpython"\rlib\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src
E           	rpython_jit_metainterp_optimizeopt.c
E           		cl.exe /nologo /MD  /O2 -DPYPY_CPU_HAS_STANDARD_PRECISION  -DPYPY_MAKEFILE /Yustdafx.h /Fpstdafx.pch /FIstdafx.h /Forpython_jit_metainterp_optimizeopt_1.obj /c rpython_jit_metainterp_optimizeopt_1.c /I/include  /I"D:\a\pypy\pypy\rpython"\translator\c  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\src  /I"D:\a\pypy\pypy\rpython"\rlib\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src
E           	rpython_jit_metainterp_optimizeopt_1.c
E           		cl.exe /nologo /MD  /O2 -DPYPY_CPU_HAS_STANDARD_PRECISION  -DPYPY_MAKEFILE /Yustdafx.h /Fpstdafx.pch /FIstdafx.h /Forpython_jit_metainterp_optimizeopt_2.obj /c rpython_jit_metainterp_optimizeopt_2.c /I/include  /I"D:\a\pypy\pypy\rpython"\translator\c  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\src  /I"D:\a\pypy\pypy\rpython"\rlib\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src
E           	rpython_jit_metainterp_optimizeopt_2.c
E           		cl.exe /nologo /MD  /O2 -DPYPY_CPU_HAS_STANDARD_PRECISION  -DPYPY_MAKEFILE /Yustdafx.h /Fpstdafx.pch /FIstdafx.h /Forpython_jit_metainterp_optimizeopt_3.obj /c rpython_jit_metainterp_optimizeopt_3.c /I/include  /I"D:\a\pypy\pypy\rpython"\translator\c  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\src  /I"D:\a\pypy\pypy\rpython"\rlib\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src
E           	rpython_jit_metainterp_optimizeopt_3.c
E           		cl.exe /nologo /MD  /O2 -DPYPY_CPU_HAS_STANDARD_PRECISION  -DPYPY_MAKEFILE /Yustdafx.h /Fpstdafx.pch /FIstdafx.h /Forpython_jit_metainterp_optimizeopt_4.obj /c rpython_jit_metainterp_optimizeopt_4.c /I/include  /I"D:\a\pypy\pypy\rpython"\translator\c  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\src  /I"D:\a\pypy\pypy\rpython"\rlib\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src
E           	rpython_jit_metainterp_optimizeopt_4.c
E           		cl.exe /nologo /MD  /O2 -DPYPY_CPU_HAS_STANDARD_PRECISION  -DPYPY_MAKEFILE /Yustdafx.h /Fpstdafx.pch /FIstdafx.h /Forpython_memory.obj /c rpython_memory.c /I/include  /I"D:\a\pypy\pypy\rpython"\translator\c  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\src  /I"D:\a\pypy\pypy\rpython"\rlib\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src
E           	rpython_memory.c
E           		cl.exe /nologo /MD  /O2 -DPYPY_CPU_HAS_STANDARD_PRECISION  -DPYPY_MAKEFILE /Yustdafx.h /Fpstdafx.pch /FIstdafx.h /Forpython_memory_gc.obj /c rpython_memory_gc.c /I/include  /I"D:\a\pypy\pypy\rpython"\translator\c  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\src  /I"D:\a\pypy\pypy\rpython"\rlib\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src
E           	rpython_memory_gc.c
E           	rpython_memory_gc.c(2415): error C2027: use of undefined type 'MEMORYSTATUSEX'
E           	c:\Users\runneradmin\AppData\Local\Temp\usession-pypy-HEAD-41\testing_1\singleheader.h(13508): note: see declaration of 'MEMORYSTATUSEX'
E           	rpython_memory_gc.c(2441): error C2027: use of undefined type 'MEMORYSTATUSEX'
E           	c:\Users\runneradmin\AppData\Local\Temp\usession-pypy-HEAD-41\testing_1\singleheader.h(13508): note: see declaration of 'MEMORYSTATUSEX'
E           	rpython_memory_gc.c(2442): error C2037: left of 'dwLength' specifies undefined struct/union 'MEMORYSTATUSEX'
E           	rpython_memory_gc.c(2449): error C2037: left of 'ullTotalPhys' specifies undefined struct/union 'MEMORYSTATUSEX'
E           	NMAKE : fatal error U1077: 'cl.exe /nologo /MD  /O2 -DPYPY_CPU_HAS_STANDARD_PRECISION  -DPYPY_MAKEFILE /Yustdafx.h /Fpstdafx.pch /FIstdafx.h /Forpython_memory_gc.obj /c rpython_memory_gc.c /I/include  /I"D:\a\pypy\pypy\rpython"\translator\c  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\src  /I"D:\a\pypy\pypy\rpython"\rlib\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src' : return code '0x2'
E           	Stop.
E           	""")

translator\platform\windows.py:319: CompilationError
---------- Captured stdout setup ----------
{'close_stack': 0, 'get_set_errno': 1, 'simple': 2}
---------- Captured stderr setup ----------
[platform:msg] Updated environment with vsver 160, using x64 True
[rtyper] specializing: 100 / 1256 blocks   (7%)
[rtyper] specializing: 200 / 1373 blocks   (14%)
[rtyper] specializing: 300 / 1373 blocks   (21%)
[rtyper] specializing: 400 / 1373 blocks   (29%)
[rtyper] specializing: 500 / 1377 blocks   (36%)
[rtyper] specializing: 600 / 1377 blocks   (43%)
[rtyper] specializing: 700 / 1377 blocks   (50%)
[rtyper] specializing: 800 / 1377 blocks   (58%)
[rtyper] specializing: 900 / 1377 blocks   (65%)
[rtyper] specializing: 1000 / 1377 blocks   (72%)
[rtyper] specializing: 1100 / 1377 blocks   (79%)
[rtyper] specializing: 1200 / 1377 blocks   (87%)
[rtyper] specializing: 1300 / 1377 blocks   (94%)
[rtyper] -=- specialized 1377 blocks -=-
[rtyper] -=- specialized 4 more blocks -=-
[rtyper] specializing: 1400 / 1408 blocks   (99%)
[rtyper] -=- specialized 27 more blocks -=-
[rtyper] -=- specialized 4 more blocks -=-
[rtyper] -=- specialized 2 more blocks -=-
[rtyper] -=- specialized 7 more blocks -=-
[rtyper] -=- specialized 6 more blocks -=-
[rtyper] -=- specialized 19 more blocks -=-
[rtyper] -=- specialized 12 more blocks -=-
[backendopt:removeassert] Removed 2 asserts
[backendopt:inlining] phase with threshold factor: 32.4
[backendopt:inlining] heuristic: rpython.translator.backendopt.inline.inlining_heuristic
[backendopt:inlining] inlined 20 callsites.
[backendopt:malloc] starting malloc removal
[backendopt:malloc] removed 40 simple mallocs in total
[backendopt:mergeifblocks] starting to merge if blocks
[rtyper] -=- specialized 3 more blocks -=-
[jitcodewriter:info] making JitCodes...
[rtyper] -=- specialized 2 more blocks -=-
[rtyper] -=- specialized 2 more blocks -=-
[jitcodewriter:info] There are 12 JitCode instances.
[jitcodewriter:info] There are 38 -live- ops. Size of liveness is 49 bytes
[jitcodewriter] compute_bitstrings:
[jitcodewriter]   11 effectinfos:
[jitcodewriter]     1 descrs for arrays
[jitcodewriter]     2 descrs for fields
[jitcodewriter]     0 descrs for interiorfields
[jitcodewriter] -> 2 bitstrings, mean length 0.5, max length 1
[rtyper] specializing: 2700 / 53191 blocks   (5%)
[rtyper] specializing: 5600 / 55808 blocks   (10%)
[rtyper] specializing: 8900 / 59216 blocks   (15%)
[rtyper] specializing: 12400 / 61875 blocks   (20%)
[rtyper] specializing: 15500 / 61875 blocks   (25%)
[rtyper] specializing: 18600 / 61875 blocks   (30%)
[rtyper] specializing: 21700 / 62000 blocks   (35%)
[rtyper] specializing: 26500 / 66082 blocks   (40%)
[rtyper] specializing: 29800 / 66129 blocks   (45%)
[rtyper] specializing: 33100 / 66141 blocks   (50%)
[rtyper] specializing: 36400 / 66147 blocks   (55%)
[rtyper] specializing: 39800 / 66305 blocks   (60%)
[rtyper] specializing: 43200 / 66322 blocks   (65%)
[rtyper] specializing: 46500 / 66322 blocks   (70%)
[rtyper] specializing: 49800 / 66322 blocks   (75%)
[rtyper] specializing: 52200 / 66322 blocks   (78%)
[rtyper] specializing: 55200 / 66427 blocks   (83%)
[rtyper] specializing: 58500 / 66427 blocks   (88%)
[rtyper] specializing: 61800 / 66427 blocks   (93%)
[rtyper] specializing: 65100 / 66427 blocks   (98%)
[rtyper] specializing: 66400 / 66429 blocks   (99%)
[rtyper] -=- specialized 64964 more blocks -=-
[rtyper] specializing: 66500 / 66505 blocks   (99%)
[rtyper] -=- specialized 76 more blocks -=-
[rtyper] -=- specialized 0 more blocks -=-
[backendopt:removeassert] Could not remove 210 asserts, but removed 1890 asserts.
[backendopt:inlining] phase with threshold factor: 32.4
[backendopt:inlining] heuristic: rpython.translator.backendopt.inline.inlining_heuristic
[backendopt:inlining] inlined 29549 callsites.
[backendopt:malloc] starting malloc removal
[backendopt:malloc] removed 4555 simple mallocs in total
[backendopt:mergeifblocks] starting to merge if blocks
[rtyper] -=- specialized 25 more blocks -=-
[rtyper] specializing: 66600 / 69152 blocks   (96%)
[rtyper] specializing: 69200 / 69308 blocks   (99%)
[rtyper] -=- specialized 2778 more blocks -=-
[rtyper] -=- specialized 32 more blocks -=-
[backendopt:inlining] phase with threshold factor: 32.4
[backendopt:inlining] heuristic: rpython.translator.backendopt.inline.inlining_heuristic
[backendopt:inlining] inlined 1667 callsites.
[backendopt:malloc] starting malloc removal
[backendopt:malloc] removed 17 simple mallocs in total
[backendopt:mergeifblocks] starting to merge if blocks
[rtyper] -=- specialized 17 more blocks -=-
[rtyper] -=- specialized 12 more blocks -=-
[rtyper] -=- specialized 21 more blocks -=-
[rtyper] -=- specialized 5 more blocks -=-
[rtyper] -=- specialized 0 more blocks -=-
[c]     1000 nodes  [ array: 1114  framework rtti: 19  func: 169  group: 1  struct: 2412 ]
[c]     2000 nodes  [ array: 3114  framework rtti: 19  func: 169  group: 1  struct: 2412 ]
[c]     3000 nodes  [ array: 4245  framework rtti: 20  func: 213  group: 1  struct: 2475 ]
[c]     4000 nodes  [ array: 4245  framework rtti: 20  func: 213  group: 1  struct: 2475 ]
[c]     5000 nodes  [ array: 4245  framework rtti: 20  func: 213  group: 1  struct: 2475 ]
[c]     6000 nodes  [ array: 4245  framework rtti: 20  func: 213  group: 1  struct: 2475 ]
[c]     7000 nodes  [ array: 4311  framework rtti: 25  func: 296  group: 1  struct: 2555 ]
[c]     8000 nodes  [ array: 4561  framework rtti: 38  func: 612  group: 1  struct: 3311 ]
[c]     9000 nodes  [ array: 4844  framework rtti: 46  func: 762  group: 1  struct: 3827 ]
[c]    10000 nodes  [ array: 4927  framework rtti: 62  func: 1150  group: 1  struct: 4058 ]
[c]    11000 nodes  [ array: 4966  framework rtti: 165  func: 1450  group: 1  struct: 5878 ]
[c]    12000 nodes  [ array: 4992  framework rtti: 290  func: 1672  group: 1  struct: 6046 ]
[c]    13000 nodes  [ array: 5269  framework rtti: 290  func: 1753  group: 1  struct: 6148 ]
[c]    14000 nodes  [ array: 5367  framework rtti: 297  func: 2184  group: 1  struct: 6392 ]
[c]    15000 nodes  [ array: 5441  framework rtti: 300  func: 2730  group: 1  struct: 6868 ]
[c:database] GC transformer: finished helpers
[c]    16000 nodes  [ array: 5817  framework rtti: 305  func: 2782  group: 1  struct: 7563 ]
[c]    17000 nodes  [ array: 5900  framework rtti: 369  func: 3200  group: 1  struct: 7819 ]
[c]    18000 nodes  [ array: 5949  framework rtti: 383  func: 3652  group: 1  struct: 8610 ]
[c]    19000 nodes  [ array: 6014  framework rtti: 393  func: 3896  group: 1  struct: 8720 ]
[rtyper] specializing: 69400 / 69466 blocks   (99%)
[rtyper] -=- specialized 71 more blocks -=-
[backendopt:inlining] phase with threshold factor: 32.4
[backendopt:inlining] heuristic: rpython.translator.backendopt.inline.inlining_heuristic
[backendopt:inlining] inlined 7 callsites.
[backendopt:malloc] starting malloc removal
[backendopt:malloc] removed 16 simple mallocs in total
[backendopt:mergeifblocks] starting to merge if blocks
[c:database] GC transformer: finished tables
[gctransform:info] assigned 1025 typeids
[gctransform:info] added 27340 push/pop stack root instructions
[gctransform:info] inserted 1207 write barrier calls
[gctransform:info] inserted 1276 write_barrier_from_array calls
[gctransform:info] found 4 static roots
[c:database] Inlining GC helpers and postprocessing
[c]    19914 nodes  [ array: 6203  framework rtti: 453  func: 4092  group: 1  struct: 9165 ]
[c:database] Completed
[c:writing] structdef.h
[c:writing] forwarddecl.h
[c:writing] preimpl.h
[c:writing] data_rpython_flowspace.c
[c:writing] data_rpython_jit_backend.c
[c:writing] data_rpython_jit_backend_llsupport.c
[c:writing] data_rpython_jit_backend_llsupport_test.c
[c:writing] data_rpython_jit_backend_x86.c
[c:writing] data_rpython_jit_codewriter.c
[c:writing] data_rpython_jit_metainterp.c
[c:writing] data_rpython_jit_metainterp_optimizeopt.c
[c:writing] data_rpython_memory_gc.c
[c:writing] data_rpython_memory_gctransform.c
[c:writing] data_rpython_rlib.c
[c:writing] data_rpython_rlib_rjitlog.c
[c:writing] data_rpython_rtyper.c
[c:writing] data_rpython_rtyper_lltypesystem.c
[c:writing] nonfuncnodes.c
[c:writing] data_rpython_jit_backend_llsupport_1.c
[c:writing] data_rpython_jit_backend_llsupport_test_1.c
[c:writing] data_rpython_jit_backend_x86_1.c
[c:writing] data_rpython_jit_metainterp_1.c
[c:writing] data_rpython_memory_gc_1.c
[c:writing] data_rpython_rlib_1.c
[c:writing] data_rpython_rlib_rjitlog_1.c
[c:writing] data_rpython_rlib_rvmprof.c
[c:writing] data_rpython_rtyper_lltypesystem_1.c
[c:writing] data_rpython_rtyper_lltypesystem_module.c
[c:writing] implement.c
[c:writing] rpython_flowspace.c
[c:writing] rpython_jit_backend.c
[c:writing] rpython_jit_backend_llsupport.c
[c:computedgoto] pypy_g_GcRewriterAssembler_handle_malloc_operation: 6 cases
[c:writing] rpython_jit_backend_llsupport_test.c
[c:writing] rpython_jit_backend_x86.c
[c:writing] rpython_jit_backend_x86_1.c
[c:writing] rpython_jit_backend_x86_2.c
[c:writing] rpython_jit_backend_x86_3.c
[c:writing] rpython_jit_codewriter.c
[c:writing] rpython_jit_metainterp.c
[c:computedgoto] pypy_g_dispatch_loop: 47 cases
[c:writing] rpython_jit_metainterp_1.c
[c:computedgoto] pypy_g_HeapCache_clear_caches_not_necessary: 15 cases
[c:computedgoto] pypy_g_HeapCache_clear_caches_varargs: 11 cases
[c:writing] rpython_jit_metainterp_2.c
[c:computedgoto] pypy_g_execute_nonspec_const: 253 cases
[c:writing] rpython_jit_metainterp_3.c
[c:writing] rpython_jit_metainterp_optimizeopt.c
[c:computedgoto] pypy_g_OptHeap_check_postprocess_: 6 cases
[c:computedgoto] pypy_g_dispatch_postprocess___star_0: 6 cases
[c:writing] rpython_jit_metainterp_optimizeopt_1.c
[c:computedgoto] pypy_g_OptString_optimize_CALL_I: 8 cases
[c:writing] rpython_jit_metainterp_optimizeopt_2.c
[c:computedgoto] pypy_g_Optimizer_protect_speculative_operation: 8 cases
[c:writing] rpython_jit_metainterp_optimizeopt_3.c
[c:writing] rpython_jit_metainterp_optimizeopt_4.c
[c:writing] rpython_memory.c
[c:writing] rpython_memory_gc.c
[c:writing] rpython_memory_gctransform.c
[c:writing] rpython_rlib.c
[c:writing] rpython_rlib_rjitlog.c
[c:writing] rpython_rlib_rvmprof.c
[c:writing] rpython_rtyper.c
[c:writing] rpython_rtyper_lltypesystem.c
[c:writing] rpython_rtyper_lltypesystem_1.c
[c:writing] rpython_rtyper_lltypesystem_module.c
[c:writing] rpython_translator.c
[c:writing] rpython_translator_c.c
[platform:execute] nmake  in c:\users\runner~1\appdata\local\temp\usession-pypy-HEAD-41\testing_1
[platform:Error] 	cl.exe stdafx.c /c /nologo /MD  /O2 -DPYPY_CPU_HAS_STANDARD_PRECISION  -DPYPY_MAKEFILE /Ycstdafx.h /Fpstdafx.pch /FIstdafx.h /I/include  /I"D:\a\pypy\pypy\rpython"\translator\c  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\src  /I"D:\a\pypy\pypy\rpython"\rlib\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src
[platform:Error] stdafx.c
[platform:Error] 	cl.exe /nologo /MD  /O2 -DPYPY_CPU_HAS_STANDARD_PRECISION  -DPYPY_MAKEFILE /Yustdafx.h /Fpstdafx.pch /FIstdafx.h /Fotesting_1.obj /c testing_1.c /I/include  /I"D:\a\pypy\pypy\rpython"\translator\c  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\src  /I"D:\a\pypy\pypy\rpython"\rlib\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src
[platform:Error] testing_1.c
[platform:Error] 	cl.exe /nologo /MD  /O2 -DPYPY_CPU_HAS_STANDARD_PRECISION  -DPYPY_MAKEFILE /Yustdafx.h /Fpstdafx.pch /FIstdafx.h /Fodata_rpython_flowspace.obj /c data_rpython_flowspace.c /I/include  /I"D:\a\pypy\pypy\rpython"\translator\c  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\src  /I"D:\a\pypy\pypy\rpython"\rlib\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src
[platform:Error] data_rpython_flowspace.c
[platform:Error] 	cl.exe /nologo /MD  /O2 -DPYPY_CPU_HAS_STANDARD_PRECISION  -DPYPY_MAKEFILE /Yustdafx.h /Fpstdafx.pch /FIstdafx.h /Fodata_rpython_jit_backend.obj /c data_rpython_jit_backend.c /I/include  /I"D:\a\pypy\pypy\rpython"\translator\c  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\src  /I"D:\a\pypy\pypy\rpython"\rlib\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src
[platform:Error] data_rpython_jit_backend.c
[platform:Error] 	cl.exe /nologo /MD  /O2 -DPYPY_CPU_HAS_STANDARD_PRECISION  -DPYPY_MAKEFILE /Yustdafx.h /Fpstdafx.pch /FIstdafx.h /Fodata_rpython_jit_backend_llsupport.obj /c data_rpython_jit_backend_llsupport.c /I/include  /I"D:\a\pypy\pypy\rpython"\translator\c  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\src  /I"D:\a\pypy\pypy\rpython"\rlib\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src
[platform:Error] data_rpython_jit_backend_llsupport.c
[platform:Error] 	cl.exe /nologo /MD  /O2 -DPYPY_CPU_HAS_STANDARD_PRECISION  -DPYPY_MAKEFILE /Yustdafx.h /Fpstdafx.pch /FIstdafx.h /Fodata_rpython_jit_backend_llsupport_test.obj /c data_rpython_jit_backend_llsupport_test.c /I/include  /I"D:\a\pypy\pypy\rpython"\translator\c  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\src  /I"D:\a\pypy\pypy\rpython"\rlib\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src
[platform:Error] data_rpython_jit_backend_llsupport_test.c
[platform:Error] 	cl.exe /nologo /MD  /O2 -DPYPY_CPU_HAS_STANDARD_PRECISION  -DPYPY_MAKEFILE /Yustdafx.h /Fpstdafx.pch /FIstdafx.h /Fodata_rpython_jit_backend_x86.obj /c data_rpython_jit_backend_x86.c /I/include  /I"D:\a\pypy\pypy\rpython"\translator\c  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\src  /I"D:\a\pypy\pypy\rpython"\rlib\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src
[platform:Error] data_rpython_jit_backend_x86.c
[platform:Error] 	cl.exe /nologo /MD  /O2 -DPYPY_CPU_HAS_STANDARD_PRECISION  -DPYPY_MAKEFILE /Yustdafx.h /Fpstdafx.pch /FIstdafx.h /Fodata_rpython_jit_codewriter.obj /c data_rpython_jit_codewriter.c /I/include  /I"D:\a\pypy\pypy\rpython"\translator\c  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\src  /I"D:\a\pypy\pypy\rpython"\rlib\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src
[platform:Error] data_rpython_jit_codewriter.c
[platform:Error] 	cl.exe /nologo /MD  /O2 -DPYPY_CPU_HAS_STANDARD_PRECISION  -DPYPY_MAKEFILE /Yustdafx.h /Fpstdafx.pch /FIstdafx.h /Fodata_rpython_jit_metainterp.obj /c data_rpython_jit_metainterp.c /I/include  /I"D:\a\pypy\pypy\rpython"\translator\c  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\src  /I"D:\a\pypy\pypy\rpython"\rlib\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src
[platform:Error] data_rpython_jit_metainterp.c
[platform:Error] 	cl.exe /nologo /MD  /O2 -DPYPY_CPU_HAS_STANDARD_PRECISION  -DPYPY_MAKEFILE /Yustdafx.h /Fpstdafx.pch /FIstdafx.h /Fodata_rpython_jit_metainterp_optimizeopt.obj /c data_rpython_jit_metainterp_optimizeopt.c /I/include  /I"D:\a\pypy\pypy\rpython"\translator\c  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\src  /I"D:\a\pypy\pypy\rpython"\rlib\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src
[platform:Error] data_rpython_jit_metainterp_optimizeopt.c
[platform:Error] 	cl.exe /nologo /MD  /O2 -DPYPY_CPU_HAS_STANDARD_PRECISION  -DPYPY_MAKEFILE /Yustdafx.h /Fpstdafx.pch /FIstdafx.h /Fodata_rpython_memory_gc.obj /c data_rpython_memory_gc.c /I/include  /I"D:\a\pypy\pypy\rpython"\translator\c  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\src  /I"D:\a\pypy\pypy\rpython"\rlib\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src
[platform:Error] data_rpython_memory_gc.c
[platform:Error] 	cl.exe /nologo /MD  /O2 -DPYPY_CPU_HAS_STANDARD_PRECISION  -DPYPY_MAKEFILE /Yustdafx.h /Fpstdafx.pch /FIstdafx.h /Fodata_rpython_memory_gctransform.obj /c data_rpython_memory_gctransform.c /I/include  /I"D:\a\pypy\pypy\rpython"\translator\c  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\src  /I"D:\a\pypy\pypy\rpython"\rlib\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src
[platform:Error] data_rpython_memory_gctransform.c
[platform:Error] 	cl.exe /nologo /MD  /O2 -DPYPY_CPU_HAS_STANDARD_PRECISION  -DPYPY_MAKEFILE /Yustdafx.h /Fpstdafx.pch /FIstdafx.h /Fodata_rpython_rlib.obj /c data_rpython_rlib.c /I/include  /I"D:\a\pypy\pypy\rpython"\translator\c  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\src  /I"D:\a\pypy\pypy\rpython"\rlib\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src
[platform:Error] data_rpython_rlib.c
[platform:Error] 	cl.exe /nologo /MD  /O2 -DPYPY_CPU_HAS_STANDARD_PRECISION  -DPYPY_MAKEFILE /Yustdafx.h /Fpstdafx.pch /FIstdafx.h /Fodata_rpython_rlib_rjitlog.obj /c data_rpython_rlib_rjitlog.c /I/include  /I"D:\a\pypy\pypy\rpython"\translator\c  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\src  /I"D:\a\pypy\pypy\rpython"\rlib\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src
[platform:Error] data_rpython_rlib_rjitlog.c
[platform:Error] 	cl.exe /nologo /MD  /O2 -DPYPY_CPU_HAS_STANDARD_PRECISION  -DPYPY_MAKEFILE /Yustdafx.h /Fpstdafx.pch /FIstdafx.h /Fodata_rpython_rtyper.obj /c data_rpython_rtyper.c /I/include  /I"D:\a\pypy\pypy\rpython"\translator\c  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\src  /I"D:\a\pypy\pypy\rpython"\rlib\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src
[platform:Error] data_rpython_rtyper.c
[platform:Error] 	cl.exe /nologo /MD  /O2 -DPYPY_CPU_HAS_STANDARD_PRECISION  -DPYPY_MAKEFILE /Yustdafx.h /Fpstdafx.pch /FIstdafx.h /Fodata_rpython_rtyper_lltypesystem.obj /c data_rpython_rtyper_lltypesystem.c /I/include  /I"D:\a\pypy\pypy\rpython"\translator\c  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\src  /I"D:\a\pypy\pypy\rpython"\rlib\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src
[platform:Error] data_rpython_rtyper_lltypesystem.c
[platform:Error] 	cl.exe /nologo /MD  /O2 -DPYPY_CPU_HAS_STANDARD_PRECISION  -DPYPY_MAKEFILE /Yustdafx.h /Fpstdafx.pch /FIstdafx.h /Fononfuncnodes.obj /c nonfuncnodes.c /I/include  /I"D:\a\pypy\pypy\rpython"\translator\c  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\src  /I"D:\a\pypy\pypy\rpython"\rlib\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src
[platform:Error] nonfuncnodes.c
[platform:Error] 	cl.exe /nologo /MD  /O2 -DPYPY_CPU_HAS_STANDARD_PRECISION  -DPYPY_MAKEFILE /Yustdafx.h /Fpstdafx.pch /FIstdafx.h /Fodata_rpython_jit_backend_llsupport_1.obj /c data_rpython_jit_backend_llsupport_1.c /I/include  /I"D:\a\pypy\pypy\rpython"\translator\c  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\src  /I"D:\a\pypy\pypy\rpython"\rlib\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src
[platform:Error] data_rpython_jit_backend_llsupport_1.c
[platform:Error] 	cl.exe /nologo /MD  /O2 -DPYPY_CPU_HAS_STANDARD_PRECISION  -DPYPY_MAKEFILE /Yustdafx.h /Fpstdafx.pch /FIstdafx.h /Fodata_rpython_jit_backend_llsupport_test_1.obj /c data_rpython_jit_backend_llsupport_test_1.c /I/include  /I"D:\a\pypy\pypy\rpython"\translator\c  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\src  /I"D:\a\pypy\pypy\rpython"\rlib\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src
[platform:Error] data_rpython_jit_backend_llsupport_test_1.c
[platform:Error] 	cl.exe /nologo /MD  /O2 -DPYPY_CPU_HAS_STANDARD_PRECISION  -DPYPY_MAKEFILE /Yustdafx.h /Fpstdafx.pch /FIstdafx.h /Fodata_rpython_jit_backend_x86_1.obj /c data_rpython_jit_backend_x86_1.c /I/include  /I"D:\a\pypy\pypy\rpython"\translator\c  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\src  /I"D:\a\pypy\pypy\rpython"\rlib\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src
[platform:Error] data_rpython_jit_backend_x86_1.c
[platform:Error] 	cl.exe /nologo /MD  /O2 -DPYPY_CPU_HAS_STANDARD_PRECISION  -DPYPY_MAKEFILE /Yustdafx.h /Fpstdafx.pch /FIstdafx.h /Fodata_rpython_jit_metainterp_1.obj /c data_rpython_jit_metainterp_1.c /I/include  /I"D:\a\pypy\pypy\rpython"\translator\c  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\src  /I"D:\a\pypy\pypy\rpython"\rlib\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src
[platform:Error] data_rpython_jit_metainterp_1.c
[platform:Error] 	cl.exe /nologo /MD  /O2 -DPYPY_CPU_HAS_STANDARD_PRECISION  -DPYPY_MAKEFILE /Yustdafx.h /Fpstdafx.pch /FIstdafx.h /Fodata_rpython_memory_gc_1.obj /c data_rpython_memory_gc_1.c /I/include  /I"D:\a\pypy\pypy\rpython"\translator\c  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\src  /I"D:\a\pypy\pypy\rpython"\rlib\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src
[platform:Error] data_rpython_memory_gc_1.c
[platform:Error] 	cl.exe /nologo /MD  /O2 -DPYPY_CPU_HAS_STANDARD_PRECISION  -DPYPY_MAKEFILE /Yustdafx.h /Fpstdafx.pch /FIstdafx.h /Fodata_rpython_rlib_1.obj /c data_rpython_rlib_1.c /I/include  /I"D:\a\pypy\pypy\rpython"\translator\c  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\src  /I"D:\a\pypy\pypy\rpython"\rlib\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src
[platform:Error] data_rpython_rlib_1.c
[platform:Error] 	cl.exe /nologo /MD  /O2 -DPYPY_CPU_HAS_STANDARD_PRECISION  -DPYPY_MAKEFILE /Yustdafx.h /Fpstdafx.pch /FIstdafx.h /Fodata_rpython_rlib_rjitlog_1.obj /c data_rpython_rlib_rjitlog_1.c /I/include  /I"D:\a\pypy\pypy\rpython"\translator\c  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\src  /I"D:\a\pypy\pypy\rpython"\rlib\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src
[platform:Error] data_rpython_rlib_rjitlog_1.c
[platform:Error] 	cl.exe /nologo /MD  /O2 -DPYPY_CPU_HAS_STANDARD_PRECISION  -DPYPY_MAKEFILE /Yustdafx.h /Fpstdafx.pch /FIstdafx.h /Fodata_rpython_rlib_rvmprof.obj /c data_rpython_rlib_rvmprof.c /I/include  /I"D:\a\pypy\pypy\rpython"\translator\c  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\src  /I"D:\a\pypy\pypy\rpython"\rlib\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src
[platform:Error] data_rpython_rlib_rvmprof.c
[platform:Error] 	cl.exe /nologo /MD  /O2 -DPYPY_CPU_HAS_STANDARD_PRECISION  -DPYPY_MAKEFILE /Yustdafx.h /Fpstdafx.pch /FIstdafx.h /Fodata_rpython_rtyper_lltypesystem_1.obj /c data_rpython_rtyper_lltypesystem_1.c /I/include  /I"D:\a\pypy\pypy\rpython"\translator\c  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\src  /I"D:\a\pypy\pypy\rpython"\rlib\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src
[platform:Error] data_rpython_rtyper_lltypesystem_1.c
[platform:Error] 	cl.exe /nologo /MD  /O2 -DPYPY_CPU_HAS_STANDARD_PRECISION  -DPYPY_MAKEFILE /Yustdafx.h /Fpstdafx.pch /FIstdafx.h /Fodata_rpython_rtyper_lltypesystem_module.obj /c data_rpython_rtyper_lltypesystem_module.c /I/include  /I"D:\a\pypy\pypy\rpython"\translator\c  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\src  /I"D:\a\pypy\pypy\rpython"\rlib\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src
[platform:Error] data_rpython_rtyper_lltypesystem_module.c
[platform:Error] 	cl.exe /nologo /MD  /O2 -DPYPY_CPU_HAS_STANDARD_PRECISION  -DPYPY_MAKEFILE /Yustdafx.h /Fpstdafx.pch /FIstdafx.h /Foimplement.obj /c implement.c /I/include  /I"D:\a\pypy\pypy\rpython"\translator\c  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\src  /I"D:\a\pypy\pypy\rpython"\rlib\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src
[platform:Error] implement.c
[platform:Error] implement.c(82): warning C4133: 'function': incompatible types - from 'MEMORYSTATUSEX *' to 'LPMEMORYSTATUSEX'
[platform:Error] 	cl.exe /nologo /MD  /O2 -DPYPY_CPU_HAS_STANDARD_PRECISION  -DPYPY_MAKEFILE /Yustdafx.h /Fpstdafx.pch /FIstdafx.h /Forpython_flowspace.obj /c rpython_flowspace.c /I/include  /I"D:\a\pypy\pypy\rpython"\translator\c  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\src  /I"D:\a\pypy\pypy\rpython"\rlib\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src
[platform:Error] rpython_flowspace.c
[platform:Error] 	cl.exe /nologo /MD  /O2 -DPYPY_CPU_HAS_STANDARD_PRECISION  -DPYPY_MAKEFILE /Yustdafx.h /Fpstdafx.pch /FIstdafx.h /Forpython_jit_backend.obj /c rpython_jit_backend.c /I/include  /I"D:\a\pypy\pypy\rpython"\translator\c  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\src  /I"D:\a\pypy\pypy\rpython"\rlib\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src
[platform:Error] rpython_jit_backend.c
[platform:Error] 	cl.exe /nologo /MD  /O2 -DPYPY_CPU_HAS_STANDARD_PRECISION  -DPYPY_MAKEFILE /Yustdafx.h /Fpstdafx.pch /FIstdafx.h /Forpython_jit_backend_llsupport.obj /c rpython_jit_backend_llsupport.c /I/include  /I"D:\a\pypy\pypy\rpython"\translator\c  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\src  /I"D:\a\pypy\pypy\rpython"\rlib\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src
[platform:Error] rpython_jit_backend_llsupport.c
[platform:Error] 	cl.exe /nologo /MD  /O2 -DPYPY_CPU_HAS_STANDARD_PRECISION  -DPYPY_MAKEFILE /Yustdafx.h /Fpstdafx.pch /FIstdafx.h /Forpython_jit_backend_llsupport_test.obj /c rpython_jit_backend_llsupport_test.c /I/include  /I"D:\a\pypy\pypy\rpython"\translator\c  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\src  /I"D:\a\pypy\pypy\rpython"\rlib\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src
[platform:Error] rpython_jit_backend_llsupport_test.c
[platform:Error] 	cl.exe /nologo /MD  /O2 -DPYPY_CPU_HAS_STANDARD_PRECISION  -DPYPY_MAKEFILE /Yustdafx.h /Fpstdafx.pch /FIstdafx.h /Forpython_jit_backend_x86.obj /c rpython_jit_backend_x86.c /I/include  /I"D:\a\pypy\pypy\rpython"\translator\c  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\src  /I"D:\a\pypy\pypy\rpython"\rlib\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src
[platform:Error] rpython_jit_backend_x86.c
[platform:Error] 	cl.exe /nologo /MD  /O2 -DPYPY_CPU_HAS_STANDARD_PRECISION  -DPYPY_MAKEFILE /Yustdafx.h /Fpstdafx.pch /FIstdafx.h /Forpython_jit_backend_x86_1.obj /c rpython_jit_backend_x86_1.c /I/include  /I"D:\a\pypy\pypy\rpython"\translator\c  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\src  /I"D:\a\pypy\pypy\rpython"\rlib\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src
[platform:Error] rpython_jit_backend_x86_1.c
[platform:Error] 	cl.exe /nologo /MD  /O2 -DPYPY_CPU_HAS_STANDARD_PRECISION  -DPYPY_MAKEFILE /Yustdafx.h /Fpstdafx.pch /FIstdafx.h /Forpython_jit_backend_x86_2.obj /c rpython_jit_backend_x86_2.c /I/include  /I"D:\a\pypy\pypy\rpython"\translator\c  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\src  /I"D:\a\pypy\pypy\rpython"\rlib\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src
[platform:Error] rpython_jit_backend_x86_2.c
[platform:Error] 	cl.exe /nologo /MD  /O2 -DPYPY_CPU_HAS_STANDARD_PRECISION  -DPYPY_MAKEFILE /Yustdafx.h /Fpstdafx.pch /FIstdafx.h /Forpython_jit_backend_x86_3.obj /c rpython_jit_backend_x86_3.c /I/include  /I"D:\a\pypy\pypy\rpython"\translator\c  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\src  /I"D:\a\pypy\pypy\rpython"\rlib\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src
[platform:Error] rpython_jit_backend_x86_3.c
[platform:Error] 	cl.exe /nologo /MD  /O2 -DPYPY_CPU_HAS_STANDARD_PRECISION  -DPYPY_MAKEFILE /Yustdafx.h /Fpstdafx.pch /FIstdafx.h /Forpython_jit_codewriter.obj /c rpython_jit_codewriter.c /I/include  /I"D:\a\pypy\pypy\rpython"\translator\c  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\src  /I"D:\a\pypy\pypy\rpython"\rlib\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src
[platform:Error] rpython_jit_codewriter.c
[platform:Error] 	cl.exe /nologo /MD  /O2 -DPYPY_CPU_HAS_STANDARD_PRECISION  -DPYPY_MAKEFILE /Yustdafx.h /Fpstdafx.pch /FIstdafx.h /Forpython_jit_metainterp.obj /c rpython_jit_metainterp.c /I/include  /I"D:\a\pypy\pypy\rpython"\translator\c  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\src  /I"D:\a\pypy\pypy\rpython"\rlib\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src
[platform:Error] rpython_jit_metainterp.c
[platform:Error] 	cl.exe /nologo /MD  /O2 -DPYPY_CPU_HAS_STANDARD_PRECISION  -DPYPY_MAKEFILE /Yustdafx.h /Fpstdafx.pch /FIstdafx.h /Forpython_jit_metainterp_1.obj /c rpython_jit_metainterp_1.c /I/include  /I"D:\a\pypy\pypy\rpython"\translator\c  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\src  /I"D:\a\pypy\pypy\rpython"\rlib\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src
[platform:Error] rpython_jit_metainterp_1.c
[platform:Error] 	cl.exe /nologo /MD  /O2 -DPYPY_CPU_HAS_STANDARD_PRECISION  -DPYPY_MAKEFILE /Yustdafx.h /Fpstdafx.pch /FIstdafx.h /Forpython_jit_metainterp_2.obj /c rpython_jit_metainterp_2.c /I/include  /I"D:\a\pypy\pypy\rpython"\translator\c  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\src  /I"D:\a\pypy\pypy\rpython"\rlib\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src
[platform:Error] rpython_jit_metainterp_2.c
[platform:Error] 	cl.exe /nologo /MD  /O2 -DPYPY_CPU_HAS_STANDARD_PRECISION  -DPYPY_MAKEFILE /Yustdafx.h /Fpstdafx.pch /FIstdafx.h /Forpython_jit_metainterp_3.obj /c rpython_jit_metainterp_3.c /I/include  /I"D:\a\pypy\pypy\rpython"\translator\c  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\src  /I"D:\a\pypy\pypy\rpython"\rlib\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src
[platform:Error] rpython_jit_metainterp_3.c
[platform:Error] 	cl.exe /nologo /MD  /O2 -DPYPY_CPU_HAS_STANDARD_PRECISION  -DPYPY_MAKEFILE /Yustdafx.h /Fpstdafx.pch /FIstdafx.h /Forpython_jit_metainterp_optimizeopt.obj /c rpython_jit_metainterp_optimizeopt.c /I/include  /I"D:\a\pypy\pypy\rpython"\translator\c  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\src  /I"D:\a\pypy\pypy\rpython"\rlib\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src
[platform:Error] rpython_jit_metainterp_optimizeopt.c
[platform:Error] 	cl.exe /nologo /MD  /O2 -DPYPY_CPU_HAS_STANDARD_PRECISION  -DPYPY_MAKEFILE /Yustdafx.h /Fpstdafx.pch /FIstdafx.h /Forpython_jit_metainterp_optimizeopt_1.obj /c rpython_jit_metainterp_optimizeopt_1.c /I/include  /I"D:\a\pypy\pypy\rpython"\translator\c  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\src  /I"D:\a\pypy\pypy\rpython"\rlib\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src
[platform:Error] rpython_jit_metainterp_optimizeopt_1.c
[platform:Error] 	cl.exe /nologo /MD  /O2 -DPYPY_CPU_HAS_STANDARD_PRECISION  -DPYPY_MAKEFILE /Yustdafx.h /Fpstdafx.pch /FIstdafx.h /Forpython_jit_metainterp_optimizeopt_2.obj /c rpython_jit_metainterp_optimizeopt_2.c /I/include  /I"D:\a\pypy\pypy\rpython"\translator\c  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\src  /I"D:\a\pypy\pypy\rpython"\rlib\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src
[platform:Error] rpython_jit_metainterp_optimizeopt_2.c
[platform:Error] 	cl.exe /nologo /MD  /O2 -DPYPY_CPU_HAS_STANDARD_PRECISION  -DPYPY_MAKEFILE /Yustdafx.h /Fpstdafx.pch /FIstdafx.h /Forpython_jit_metainterp_optimizeopt_3.obj /c rpython_jit_metainterp_optimizeopt_3.c /I/include  /I"D:\a\pypy\pypy\rpython"\translator\c  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\src  /I"D:\a\pypy\pypy\rpython"\rlib\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src
[platform:Error] rpython_jit_metainterp_optimizeopt_3.c
[platform:Error] 	cl.exe /nologo /MD  /O2 -DPYPY_CPU_HAS_STANDARD_PRECISION  -DPYPY_MAKEFILE /Yustdafx.h /Fpstdafx.pch /FIstdafx.h /Forpython_jit_metainterp_optimizeopt_4.obj /c rpython_jit_metainterp_optimizeopt_4.c /I/include  /I"D:\a\pypy\pypy\rpython"\translator\c  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\src  /I"D:\a\pypy\pypy\rpython"\rlib\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src
[platform:Error] rpython_jit_metainterp_optimizeopt_4.c
[platform:Error] 	cl.exe /nologo /MD  /O2 -DPYPY_CPU_HAS_STANDARD_PRECISION  -DPYPY_MAKEFILE /Yustdafx.h /Fpstdafx.pch /FIstdafx.h /Forpython_memory.obj /c rpython_memory.c /I/include  /I"D:\a\pypy\pypy\rpython"\translator\c  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\src  /I"D:\a\pypy\pypy\rpython"\rlib\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src
[platform:Error] rpython_memory.c
[platform:Error] 	cl.exe /nologo /MD  /O2 -DPYPY_CPU_HAS_STANDARD_PRECISION  -DPYPY_MAKEFILE /Yustdafx.h /Fpstdafx.pch /FIstdafx.h /Forpython_memory_gc.obj /c rpython_memory_gc.c /I/include  /I"D:\a\pypy\pypy\rpython"\translator\c  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\src  /I"D:\a\pypy\pypy\rpython"\rlib\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src
[platform:Error] rpython_memory_gc.c
[platform:Error] rpython_memory_gc.c(2415): error C2027: use of undefined type 'MEMORYSTATUSEX'
[platform:Error] c:\Users\runneradmin\AppData\Local\Temp\usession-pypy-HEAD-41\testing_1\singleheader.h(13508): note: see declaration of 'MEMORYSTATUSEX'
[platform:Error] rpython_memory_gc.c(2441): error C2027: use of undefined type 'MEMORYSTATUSEX'
[platform:Error] c:\Users\runneradmin\AppData\Local\Temp\usession-pypy-HEAD-41\testing_1\singleheader.h(13508): note: see declaration of 'MEMORYSTATUSEX'
[platform:Error] rpython_memory_gc.c(2442): error C2037: left of 'dwLength' specifies undefined struct/union 'MEMORYSTATUSEX'
[platform:Error] rpython_memory_gc.c(2449): error C2037: left of 'ullTotalPhys' specifies undefined struct/union 'MEMORYSTATUSEX'
[platform:Error] NMAKE : fatal error U1077: 'cl.exe /nologo /MD  /O2 -DPYPY_CPU_HAS_STANDARD_PRECISION  -DPYPY_MAKEFILE /Yustdafx.h /Fpstdafx.pch /FIstdafx.h /Forpython_memory_gc.obj /c rpython_memory_gc.c /I/include  /I"D:\a\pypy\pypy\rpython"\translator\c  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\src  /I"D:\a\pypy\pypy\rpython"\rlib\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src' : return code '0x2'
[platform:Error] Stop.
builder: rpython-win-x86-64 build #765*
test: jit/backend/x86/test/test_zrpy_releasegil.py::TestShadowStack::()::test_simple