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

jit/backend/x86/test/test_zrpy_gc.py::TestShadowStack::()::test_compile_framework_1

cls = <class 'rpython.jit.backend.x86.test.test_zrpy_gc.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(2451): 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-39\\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_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(2417): error C2027: use of undefined type 'MEMORYSTATUSEX'
E           	c:\Users\runneradmin\AppData\Local\Temp\usession-pypy-HEAD-39\testing_1\singleheader.h(14272): note: see declaration of 'MEMORYSTATUSEX'
E           	rpython_memory_gc.c(2443): error C2027: use of undefined type 'MEMORYSTATUSEX'
E           	c:\Users\runneradmin\AppData\Local\Temp\usession-pypy-HEAD-39\testing_1\singleheader.h(14272): note: see declaration of 'MEMORYSTATUSEX'
E           	rpython_memory_gc.c(2444): error C2037: left of 'dwLength' specifies undefined struct/union 'MEMORYSTATUSEX'
E           	rpython_memory_gc.c(2451): 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 ----------
{'compile_framework_1': 0, 'compile_framework_2': 1, 'compile_framework_3': 2, 'compile_framework_3_extra': 3, 'compile_framework_4': 4, 'compile_framework_5': 5, 'compile_framework_7': 6, 'compile_framework_7_interior': 7, 'compile_framework_8': 8, 'compile_framework_9': 9, 'compile_framework_bug1': 10, 'compile_framework_call_assembler': 11, 'compile_framework_external_exception_handling': 12, 'compile_framework_float': 13, 'compile_framework_minimal_size_in_nursery': 14, 'compile_framework_vref': 15, 'multiple_pinned': 16, 'pinned_simple': 17, 'pinned_unpin': 18}
---------- Captured stderr setup ----------
[platform:msg] Updated environment with vsver 160, using x64 True
[rtyper] specializing: 100 / 1263 blocks   (7%)
[rtyper] specializing: 200 / 1414 blocks   (14%)
[rtyper] specializing: 300 / 1414 blocks   (21%)
[rtyper] specializing: 400 / 1467 blocks   (27%)
[rtyper] specializing: 500 / 1467 blocks   (34%)
[rtyper] specializing: 600 / 1471 blocks   (40%)
[rtyper] specializing: 700 / 1471 blocks   (47%)
[rtyper] specializing: 800 / 1471 blocks   (54%)
[rtyper] specializing: 900 / 1471 blocks   (61%)
[rtyper] specializing: 1000 / 1471 blocks   (67%)
[rtyper] specializing: 1100 / 1471 blocks   (74%)
[rtyper] specializing: 1200 / 1471 blocks   (81%)
[rtyper] specializing: 1300 / 1471 blocks   (88%)
[rtyper] specializing: 1400 / 1471 blocks   (95%)
[rtyper] -=- specialized 1471 blocks -=-
[rtyper] -=- specialized 4 more blocks -=-
[rtyper] specializing: 1500 / 1534 blocks   (97%)
[rtyper] -=- specialized 59 more blocks -=-
[rtyper] -=- specialized 4 more blocks -=-
[rtyper] -=- specialized 2 more blocks -=-
[rtyper] -=- specialized 2 more blocks -=-
[rtyper] -=- specialized 6 more blocks -=-
[rtyper] -=- specialized 19 more blocks -=-
[rtyper] -=- specialized 12 more blocks -=-
[backendopt:removeassert] Removed 1 asserts
[backendopt:inlining] phase with threshold factor: 32.4
[backendopt:inlining] heuristic: rpython.translator.backendopt.inline.inlining_heuristic
[backendopt:inlining] inlined 356 callsites.
[backendopt:malloc] starting malloc removal
[backendopt:malloc] removed 29 simple mallocs in total
[backendopt:mergeifblocks] starting to merge if blocks
[rtyper] -=- specialized 6 more blocks -=-
[jitcodewriter:info] making JitCodes...
[rtyper] -=- specialized 2 more blocks -=-
[jitcodewriter:info] There are 43 JitCode instances.
[jitcodewriter:info] There are 202 -live- ops. Size of liveness is 220 bytes
[jitcodewriter] compute_bitstrings:
[jitcodewriter]   18 effectinfos:
[jitcodewriter]     1 descrs for arrays
[jitcodewriter]     27 descrs for fields
[jitcodewriter]     0 descrs for interiorfields
[jitcodewriter] -> 12 bitstrings, mean length 1.2, max length 2
[rtyper] specializing: 2800 / 54526 blocks   (5%)
[rtyper] specializing: 5800 / 57106 blocks   (10%)
[rtyper] specializing: 8900 / 58692 blocks   (15%)
[rtyper] specializing: 12400 / 61689 blocks   (20%)
[rtyper] specializing: 15900 / 63262 blocks   (25%)
[rtyper] specializing: 19000 / 63262 blocks   (30%)
[rtyper] specializing: 22200 / 63262 blocks   (35%)
[rtyper] specializing: 25500 / 63726 blocks   (40%)
[rtyper] specializing: 30400 / 67460 blocks   (45%)
[rtyper] specializing: 33800 / 67472 blocks   (50%)
[rtyper] specializing: 37200 / 67478 blocks   (55%)
[rtyper] specializing: 40600 / 67580 blocks   (60%)
[rtyper] specializing: 44000 / 67655 blocks   (65%)
[rtyper] specializing: 47400 / 67655 blocks   (70%)
[rtyper] specializing: 50800 / 67655 blocks   (75%)
[rtyper] specializing: 53500 / 67655 blocks   (79%)
[rtyper] specializing: 57000 / 67760 blocks   (84%)
[rtyper] specializing: 60400 / 67760 blocks   (89%)
[rtyper] specializing: 63700 / 67760 blocks   (94%)
[rtyper] specializing: 67100 / 67760 blocks   (99%)
[rtyper] specializing: 67700 / 67762 blocks   (99%)
[rtyper] -=- specialized 66175 more blocks -=-
[rtyper] specializing: 67800 / 67842 blocks   (99%)
[rtyper] -=- specialized 80 more blocks -=-
[rtyper] -=- specialized 0 more blocks -=-
[backendopt:removeassert] Could not remove 210 asserts, but removed 1943 asserts.
[backendopt:inlining] phase with threshold factor: 32.4
[backendopt:inlining] heuristic: rpython.translator.backendopt.inline.inlining_heuristic
[backendopt:inlining] inlined 30442 callsites.
[backendopt:malloc] starting malloc removal
[backendopt:malloc] removed 5416 simple mallocs in total
[backendopt:mergeifblocks] starting to merge if blocks
[rtyper] -=- specialized 25 more blocks -=-
[rtyper] specializing: 67900 / 70493 blocks   (96%)
[rtyper] specializing: 70500 / 70649 blocks   (99%)
[rtyper] -=- specialized 2782 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 1690 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] specializing: 70700 / 70710 blocks   (99%)
[rtyper] -=- specialized 12 more blocks -=-
[rtyper] -=- specialized 21 more blocks -=-
[rtyper] -=- specialized 5 more blocks -=-
[rtyper] -=- specialized 0 more blocks -=-
[c]     1000 nodes  [ array: 1051  framework rtti: 25  func: 169  group: 1  struct: 2458 ]
[c]     2000 nodes  [ array: 3051  framework rtti: 25  func: 169  group: 1  struct: 2458 ]
[c]     3000 nodes  [ array: 4257  framework rtti: 26  func: 263  group: 1  struct: 2540 ]
[c]     4000 nodes  [ array: 4257  framework rtti: 26  func: 263  group: 1  struct: 2540 ]
[c]     5000 nodes  [ array: 4257  framework rtti: 26  func: 263  group: 1  struct: 2540 ]
[c]     6000 nodes  [ array: 4257  framework rtti: 26  func: 263  group: 1  struct: 2540 ]
[c]     7000 nodes  [ array: 4263  framework rtti: 32  func: 303  group: 1  struct: 2586 ]
[c]     8000 nodes  [ array: 4545  framework rtti: 48  func: 620  group: 1  struct: 3271 ]
[c]     9000 nodes  [ array: 4680  framework rtti: 57  func: 851  group: 1  struct: 5743 ]
[c]    10000 nodes  [ array: 4733  framework rtti: 163  func: 1070  group: 1  struct: 5978 ]
[c]    11000 nodes  [ array: 4859  framework rtti: 282  func: 1263  group: 1  struct: 6108 ]
[c]    12000 nodes  [ array: 5115  framework rtti: 286  func: 1398  group: 1  struct: 6307 ]
[c]    13000 nodes  [ array: 5270  framework rtti: 295  func: 1686  group: 1  struct: 6414 ]
[c]    14000 nodes  [ array: 5353  framework rtti: 300  func: 2157  group: 1  struct: 6674 ]
[c]    15000 nodes  [ array: 5531  framework rtti: 309  func: 2772  group: 1  struct: 7340 ]
[c]    16000 nodes  [ array: 5617  framework rtti: 310  func: 2887  group: 1  struct: 7551 ]
[c:database] GC transformer: finished helpers
[c]    17000 nodes  [ array: 5900  framework rtti: 316  func: 2966  group: 1  struct: 8297 ]
[c]    18000 nodes  [ array: 6081  framework rtti: 373  func: 3294  group: 1  struct: 8526 ]
[c]    19000 nodes  [ array: 6147  framework rtti: 393  func: 3798  group: 1  struct: 9382 ]
[c]    20000 nodes  [ array: 6194  framework rtti: 402  func: 4001  group: 1  struct: 9483 ]
[c]    21000 nodes  [ array: 6382  framework rtti: 461  func: 4246  group: 1  struct: 9925 ]
[rtyper] specializing: 70800 / 70816 blocks   (99%)
[rtyper] -=- specialized 80 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 1054 typeids
[gctransform:info] added 30232 push/pop stack root instructions
[gctransform:info] inserted 1254 write barrier calls
[gctransform:info] inserted 1378 write_barrier_from_array calls
[gctransform:info] found 4 static roots
[c:database] Inlining GC helpers and postprocessing
[c]    21062 nodes  [ array: 6401  framework rtti: 463  func: 4264  group: 1  struct: 9933 ]
[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_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: 73 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-39\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_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(2417): error C2027: use of undefined type 'MEMORYSTATUSEX'
[platform:Error] c:\Users\runneradmin\AppData\Local\Temp\usession-pypy-HEAD-39\testing_1\singleheader.h(14272): note: see declaration of 'MEMORYSTATUSEX'
[platform:Error] rpython_memory_gc.c(2443): error C2027: use of undefined type 'MEMORYSTATUSEX'
[platform:Error] c:\Users\runneradmin\AppData\Local\Temp\usession-pypy-HEAD-39\testing_1\singleheader.h(14272): note: see declaration of 'MEMORYSTATUSEX'
[platform:Error] rpython_memory_gc.c(2444): error C2037: left of 'dwLength' specifies undefined struct/union 'MEMORYSTATUSEX'
[platform:Error] rpython_memory_gc.c(2451): 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_gc.py::TestShadowStack::()::test_compile_framework_1