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

jit/backend/x86/test/test_zrpy_vmprof.py::TestZVMprof::()::test_vmprof

self = <rpython.jit.backend.x86.test.test_zrpy_vmprof.TestZVMprof object at 0x000002ef523b5130>

    def test_vmprof(self):
        from rpython.rlib import rvmprof
    
        class MyCode:
            _vmprof_unique_id = 0
            _vmprof_weak_list = RWeakListMixin() ; _vmprof_weak_list.initialize()
            def __init__(self, name):
                self.name = name
    
        def get_name(code):
            return code.name
    
        code2 = MyCode("py:y:foo:4")
        rvmprof.register_code(code2, get_name)
    
        try:
            rvmprof.register_code_object_class(MyCode, get_name)
        except rvmprof.VMProfPlatformUnsupported as e:
            py.test.skip(str(e))
    
        def get_unique_id(code):
            return rvmprof.get_unique_id(code)
    
        driver = JitDriver(greens = ['code'], reds = ['i', 's', 'num'],
            is_recursive=True, get_unique_id=get_unique_id)
    
        @rvmprof.vmprof_execute_code("xcode13", lambda code, num: code)
        def main(code, num):
            return main_jitted(code, num)
    
        def main_jitted(code, num):
            s = 0
            i = 0
            while i < num:
                driver.jit_merge_point(code=code, i=i, s=s, num=num)
                s += (i << 1)
                if i % 3 == 0 and code is not code2:
                    main(code2, 100)
                i += 1
            return s
    
        tmpfilename = str(udir.join('test_rvmprof'))
    
        def f(num):
            rthread.get_ident() # register TLOFS_thread_ident
            code = MyCode("py:x:foo:3")
            rvmprof.register_code(code, get_name)
            fd = os.open(tmpfilename, os.O_WRONLY | os.O_CREAT, 0666)
            period = 0.0001
            rvmprof.enable(fd, period)
            res = main(code, num)
            #assert res == 499999500000
            rvmprof.disable()
            os.close(fd)
            return 0
    
        def check_vmprof_output():
            from vmprof import read_profile
            tmpfile = str(udir.join('test_rvmprof'))
            stats = read_profile(tmpfile)
            t = stats.get_tree()
            assert t.name == 'py:x:foo:3'
            assert len(t.children) == 1 # jit
    
>       self.meta_interp(f, [1000000], inline=True)

jit\backend\llsupport\test\zrpy_vmprof_test.py:84: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
jit\backend\test\support.py:75: in meta_interp
    return self._compile_and_run(t, entry_point, entry_point_graph, args)
jit\backend\test\support.py:132: in _compile_and_run
    exe_name = 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(2184): 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\\src  /I"D:\\a\\pypy\\pypy\\rpython"\\rlib\\rjitlog\\src\' : return code \'0x2\'\r\nStop.\r\n'
outname = local('c:\\users\\runner~1\\appdata\\local\\temp\\usession-pypy-HEAD-43\\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\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\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\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\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\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\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\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\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\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\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\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\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\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\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\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\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\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\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\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\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\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\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\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\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\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\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\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\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_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\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\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.obj /c data_rpython_rtyper.c /I/include  /I"D:\a\pypy\pypy\rpython"\translator\c  /I"D:\a\pypy\pypy\rpython"\rlib\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\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\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\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\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\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\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\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\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\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_codewriter_1.obj /c data_rpython_jit_codewriter_1.c /I/include  /I"D:\a\pypy\pypy\rpython"\translator\c  /I"D:\a\pypy\pypy\rpython"\rlib\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\src
E           	data_rpython_jit_codewriter_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\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\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\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\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\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\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_rvmprof_1.obj /c data_rpython_rlib_rvmprof_1.c /I/include  /I"D:\a\pypy\pypy\rpython"\translator\c  /I"D:\a\pypy\pypy\rpython"\rlib\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\src
E           	data_rpython_rlib_rvmprof_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_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\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\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 /Foimplement.obj /c implement.c /I/include  /I"D:\a\pypy\pypy\rpython"\translator\c  /I"D:\a\pypy\pypy\rpython"\rlib\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\src
E           	implement.c
E           	implement.c(328): 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 /Foimplement_1.obj /c implement_1.c /I/include  /I"D:\a\pypy\pypy\rpython"\translator\c  /I"D:\a\pypy\pypy\rpython"\rlib\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\src
E           	implement_1.c
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\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\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\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\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\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\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\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\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\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\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\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\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\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\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\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\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_backend_x86_4.obj /c rpython_jit_backend_x86_4.c /I/include  /I"D:\a\pypy\pypy\rpython"\translator\c  /I"D:\a\pypy\pypy\rpython"\rlib\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\src
E           	rpython_jit_backend_x86_4.c
E           		cl.exe /nologo /MD  /O2 -DPYPY_CPU_HAS_STANDARD_PRECISION  -DPYPY_MAKEFILE /Yustdafx.h /Fpstdafx.pch /FIstdafx.h /Forpython_jit_backend_x86_5.obj /c rpython_jit_backend_x86_5.c /I/include  /I"D:\a\pypy\pypy\rpython"\translator\c  /I"D:\a\pypy\pypy\rpython"\rlib\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\src
E           	rpython_jit_backend_x86_5.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\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\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\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\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\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\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\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\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\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\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_4.obj /c rpython_jit_metainterp_4.c /I/include  /I"D:\a\pypy\pypy\rpython"\translator\c  /I"D:\a\pypy\pypy\rpython"\rlib\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\src
E           	rpython_jit_metainterp_4.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\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\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\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\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\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\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\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\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_memory.obj /c rpython_memory.c /I/include  /I"D:\a\pypy\pypy\rpython"\translator\c  /I"D:\a\pypy\pypy\rpython"\rlib\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\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\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\src
E           	rpython_memory_gc.c
E           	rpython_memory_gc.c(2150): error C2027: use of undefined type 'MEMORYSTATUSEX'
E           	c:\Users\runneradmin\AppData\Local\Temp\usession-pypy-HEAD-43\testing_1\singleheader.h(14846): note: see declaration of 'MEMORYSTATUSEX'
E           	rpython_memory_gc.c(2176): error C2027: use of undefined type 'MEMORYSTATUSEX'
E           	c:\Users\runneradmin\AppData\Local\Temp\usession-pypy-HEAD-43\testing_1\singleheader.h(14846): note: see declaration of 'MEMORYSTATUSEX'
E           	rpython_memory_gc.c(2177): error C2037: left of 'dwLength' specifies undefined struct/union 'MEMORYSTATUSEX'
E           	rpython_memory_gc.c(2184): 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\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\src' : return code '0x2'
E           	Stop.
E           	""")

translator\platform\windows.py:319: CompilationError
---------- Captured stderr call ----------
[platform:msg] Updated environment with vsver 160, using x64 True
[rtyper] specializing: 100 / 275 blocks   (36%)
[rtyper] specializing: 200 / 356 blocks   (56%)
[rtyper] specializing: 300 / 356 blocks   (84%)
[rtyper] -=- specialized 356 blocks -=-
[rtyper] -=- specialized 4 more blocks -=-
[rtyper] specializing: 400 / 682 blocks   (58%)
[rtyper] specializing: 500 / 682 blocks   (73%)
[rtyper] specializing: 600 / 682 blocks   (87%)
[rtyper] -=- specialized 322 more blocks -=-
[rtyper] specializing: 700 / 706 blocks   (99%)
[rtyper] -=- specialized 26 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:inlining] phase with threshold factor: 32.4
[backendopt:inlining] heuristic: rpython.translator.backendopt.inline.inlining_heuristic
[backendopt:inlining] inlined 5 callsites.
[backendopt:malloc] starting malloc removal
[backendopt:malloc] removed 10 simple mallocs in total
[backendopt:mergeifblocks] starting to merge if blocks
[rtyper] -=- specialized 8 more blocks -=-
[jitcodewriter:info] making JitCodes...
[rtyper] -=- specialized 2 more blocks -=-
[rtyper] -=- specialized 2 more blocks -=-
[jitcodewriter:info] There are 4 JitCode instances.
[jitcodewriter:info] There are 12 -live- ops. Size of liveness is 22 bytes
[jitcodewriter] compute_bitstrings:
[jitcodewriter]   7 effectinfos:
[jitcodewriter]     0 descrs for arrays
[jitcodewriter]     0 descrs for fields
[jitcodewriter]     0 descrs for interiorfields
[jitcodewriter] -> 1 bitstrings, mean length 0.0, max length 0
[rtyper] specializing: 2600 / 51216 blocks   (5%)
[rtyper] specializing: 5500 / 54167 blocks   (10%)
[rtyper] specializing: 9100 / 60195 blocks   (15%)
[rtyper] specializing: 12100 / 60424 blocks   (20%)
[rtyper] specializing: 15200 / 60434 blocks   (25%)
[rtyper] specializing: 18200 / 60544 blocks   (30%)
[rtyper] specializing: 22800 / 64873 blocks   (35%)
[rtyper] specializing: 26100 / 65089 blocks   (40%)
[rtyper] specializing: 29300 / 65089 blocks   (45%)
[rtyper] specializing: 32600 / 65101 blocks   (50%)
[rtyper] specializing: 35900 / 65209 blocks   (55%)
[rtyper] specializing: 39200 / 65293 blocks   (60%)
[rtyper] specializing: 42500 / 65293 blocks   (65%)
[rtyper] specializing: 45800 / 65293 blocks   (70%)
[rtyper] specializing: 49000 / 65293 blocks   (75%)
[rtyper] specializing: 50000 / 65293 blocks   (76%)
[rtyper] specializing: 52900 / 65293 blocks   (81%)
[rtyper] specializing: 56300 / 65398 blocks   (86%)
[rtyper] specializing: 59600 / 65398 blocks   (91%)
[rtyper] specializing: 62800 / 65398 blocks   (96%)
[rtyper] specializing: 65300 / 65400 blocks   (99%)
[rtyper] specializing: 65400 / 65400 blocks   (100%)
[rtyper] -=- specialized 64634 more blocks -=-
[rtyper] -=- specialized 36 more blocks -=-
[rtyper] -=- specialized 0 more blocks -=-
[rtyper] -=- specialized 25 more blocks -=-
[rtyper] specializing: 65500 / 67898 blocks   (96%)
[rtyper] specializing: 67900 / 67963 blocks   (99%)
[rtyper] -=- specialized 2502 more blocks -=-
[rtyper] specializing: 68000 / 68039 blocks   (99%)
[rtyper] -=- specialized 76 more blocks -=-
[backendopt:inlining] phase with threshold factor: 32.4
[backendopt:inlining] heuristic: rpython.translator.backendopt.inline.inlining_heuristic
[backendopt:inlining] inlined 1636 callsites.
[backendopt:malloc] starting malloc removal
[backendopt:malloc] removed 16 simple mallocs in total
[backendopt:mergeifblocks] starting to merge if blocks
[rtyper] -=- specialized 17 more blocks -=-
[rtyper] -=- specialized 12 more blocks -=-
[rtyper] -=- specialized 5 more blocks -=-
[rtyper] -=- specialized 0 more blocks -=-
[c]     1000 nodes  [ array: 1122  framework rtti: 18  func: 195  group: 1  struct: 2345 ]
[c]     2000 nodes  [ array: 3122  framework rtti: 18  func: 195  group: 1  struct: 2345 ]
[c]     3000 nodes  [ array: 4181  framework rtti: 19  func: 261  group: 1  struct: 2364 ]
[c]     4000 nodes  [ array: 4181  framework rtti: 19  func: 261  group: 1  struct: 2364 ]
[c]     5000 nodes  [ array: 4181  framework rtti: 19  func: 261  group: 1  struct: 2364 ]
[c]     6000 nodes  [ array: 4181  framework rtti: 19  func: 261  group: 1  struct: 2364 ]
[c]     7000 nodes  [ array: 4263  framework rtti: 21  func: 396  group: 1  struct: 2451 ]
[c]     8000 nodes  [ array: 4462  framework rtti: 36  func: 961  group: 1  struct: 3020 ]
[c]     9000 nodes  [ array: 4756  framework rtti: 40  func: 1507  group: 1  struct: 3521 ]
[c]    10000 nodes  [ array: 4856  framework rtti: 48  func: 1760  group: 1  struct: 3729 ]
[c]    11000 nodes  [ array: 4872  framework rtti: 129  func: 2080  group: 1  struct: 5528 ]
[c]    12000 nodes  [ array: 4872  framework rtti: 271  func: 2258  group: 1  struct: 5670 ]
[c]    13000 nodes  [ array: 5113  framework rtti: 280  func: 2453  group: 1  struct: 5864 ]
[c]    14000 nodes  [ array: 5231  framework rtti: 282  func: 2734  group: 1  struct: 6020 ]
[c]    15000 nodes  [ array: 5304  framework rtti: 292  func: 3427  group: 1  struct: 6229 ]
[c]    16000 nodes  [ array: 5382  framework rtti: 295  func: 4205  group: 1  struct: 6404 ]
[c]    17000 nodes  [ array: 5437  framework rtti: 298  func: 7281  group: 1  struct: 6982 ]
[c]    18000 nodes  [ array: 5492  framework rtti: 301  func: 7892  group: 1  struct: 7268 ]
[c]    19000 nodes  [ array: 5514  framework rtti: 301  func: 8048  group: 1  struct: 7345 ]
[c]    20000 nodes  [ array: 5537  framework rtti: 301  func: 8214  group: 1  struct: 7429 ]
[c]    21000 nodes  [ array: 5665  framework rtti: 303  func: 8639  group: 1  struct: 7600 ]
[c]    22000 nodes  [ array: 5867  framework rtti: 303  func: 8751  group: 1  struct: 7637 ]
[c:database] GC transformer: finished helpers
[c]    23000 nodes  [ array: 6040  framework rtti: 307  func: 8891  group: 1  struct: 8355 ]
[c]    24000 nodes  [ array: 6383  framework rtti: 335  func: 8951  group: 1  struct: 8483 ]
[c]    25000 nodes  [ array: 6466  framework rtti: 373  func: 9834  group: 1  struct: 8667 ]
[c]    26000 nodes  [ array: 6494  framework rtti: 380  func: 11841  group: 1  struct: 9503 ]
[c]    27000 nodes  [ array: 6512  framework rtti: 383  func: 12780  group: 1  struct: 9544 ]
[c]    28000 nodes  [ array: 6512  framework rtti: 383  func: 12833  group: 1  struct: 9545 ]
[c]    29000 nodes  [ array: 6512  framework rtti: 383  func: 12872  group: 1  struct: 9545 ]
[c]    30000 nodes  [ array: 6577  framework rtti: 399  func: 13414  group: 1  struct: 9719 ]
[c]    31000 nodes  [ array: 6748  framework rtti: 448  func: 13748  group: 1  struct: 10153 ]
[rtyper] specializing: 68100 / 68133 blocks   (99%)
[rtyper] -=- specialized 60 more blocks -=-
[backendopt:inlining] phase with threshold factor: 32.4
[backendopt:inlining] heuristic: rpython.translator.backendopt.inline.inlining_heuristic
[backendopt:inlining] inlined 4 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 1193 typeids
[gctransform:info] added 31147 push/pop stack root instructions
[gctransform:info] inserted 621 write barrier calls
[gctransform:info] inserted 242 write_barrier_from_array calls
[gctransform:info] found 3 static roots
[c:database] Inlining GC helpers and postprocessing
[c]    31406 nodes  [ array: 6792  framework rtti: 459  func: 13925  group: 1  struct: 10229 ]
[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_rlib_rvmprof.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_codewriter_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_rvmprof_1.c
[c:writing] data_rpython_rtyper_lltypesystem_1.c
[c:writing] implement.c
[c:writing] implement_1.c
[c:writing] rpython_flowspace.c
[c:writing] rpython_jit_backend.c
[c:writing] rpython_jit_backend_llsupport.c
[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_backend_x86_4.c
[c:writing] rpython_jit_backend_x86_5.c
[c:writing] rpython_jit_codewriter.c
[c:writing] rpython_jit_metainterp.c
[c:writing] rpython_jit_metainterp_1.c
[c:writing] rpython_jit_metainterp_2.c
[c:writing] rpython_jit_metainterp_3.c
[c:writing] rpython_jit_metainterp_4.c
[c:writing] rpython_jit_metainterp_optimizeopt.c
[c:writing] rpython_jit_metainterp_optimizeopt_1.c
[c:writing] rpython_jit_metainterp_optimizeopt_2.c
[c:writing] rpython_jit_metainterp_optimizeopt_3.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_2.c
[c:writing] rpython_rtyper_lltypesystem_3.c
[c:writing] rpython_rtyper_lltypesystem_module.c
[c:writing] rpython_tool_algo.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-43\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\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\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\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\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\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\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\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\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\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\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\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\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\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\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\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\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\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\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\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\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\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\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\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\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\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\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\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\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_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\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\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.obj /c data_rpython_rtyper.c /I/include  /I"D:\a\pypy\pypy\rpython"\translator\c  /I"D:\a\pypy\pypy\rpython"\rlib\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\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\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\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\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\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\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\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\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\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_codewriter_1.obj /c data_rpython_jit_codewriter_1.c /I/include  /I"D:\a\pypy\pypy\rpython"\translator\c  /I"D:\a\pypy\pypy\rpython"\rlib\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\src
[platform:Error] data_rpython_jit_codewriter_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\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\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\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\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\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\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_rvmprof_1.obj /c data_rpython_rlib_rvmprof_1.c /I/include  /I"D:\a\pypy\pypy\rpython"\translator\c  /I"D:\a\pypy\pypy\rpython"\rlib\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\src
[platform:Error] data_rpython_rlib_rvmprof_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_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\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\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 /Foimplement.obj /c implement.c /I/include  /I"D:\a\pypy\pypy\rpython"\translator\c  /I"D:\a\pypy\pypy\rpython"\rlib\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\src
[platform:Error] implement.c
[platform:Error] implement.c(328): 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 /Foimplement_1.obj /c implement_1.c /I/include  /I"D:\a\pypy\pypy\rpython"\translator\c  /I"D:\a\pypy\pypy\rpython"\rlib\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\src
[platform:Error] implement_1.c
[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\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\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\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\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\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\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\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\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\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\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\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\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\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\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\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\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_backend_x86_4.obj /c rpython_jit_backend_x86_4.c /I/include  /I"D:\a\pypy\pypy\rpython"\translator\c  /I"D:\a\pypy\pypy\rpython"\rlib\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\src
[platform:Error] rpython_jit_backend_x86_4.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_5.obj /c rpython_jit_backend_x86_5.c /I/include  /I"D:\a\pypy\pypy\rpython"\translator\c  /I"D:\a\pypy\pypy\rpython"\rlib\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\src
[platform:Error] rpython_jit_backend_x86_5.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\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\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\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\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\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\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\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\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\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\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_4.obj /c rpython_jit_metainterp_4.c /I/include  /I"D:\a\pypy\pypy\rpython"\translator\c  /I"D:\a\pypy\pypy\rpython"\rlib\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\src
[platform:Error] rpython_jit_metainterp_4.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\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\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\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\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\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\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\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\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_memory.obj /c rpython_memory.c /I/include  /I"D:\a\pypy\pypy\rpython"\translator\c  /I"D:\a\pypy\pypy\rpython"\rlib\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\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\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\src
[platform:Error] rpython_memory_gc.c
[platform:Error] rpython_memory_gc.c(2150): error C2027: use of undefined type 'MEMORYSTATUSEX'
[platform:Error] c:\Users\runneradmin\AppData\Local\Temp\usession-pypy-HEAD-43\testing_1\singleheader.h(14846): note: see declaration of 'MEMORYSTATUSEX'
[platform:Error] rpython_memory_gc.c(2176): error C2027: use of undefined type 'MEMORYSTATUSEX'
[platform:Error] c:\Users\runneradmin\AppData\Local\Temp\usession-pypy-HEAD-43\testing_1\singleheader.h(14846): note: see declaration of 'MEMORYSTATUSEX'
[platform:Error] rpython_memory_gc.c(2177): error C2037: left of 'dwLength' specifies undefined struct/union 'MEMORYSTATUSEX'
[platform:Error] rpython_memory_gc.c(2184): 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\rvmprof\src  /I"D:\a\pypy\pypy\rpython"\rlib\src  /I"D:\a\pypy\pypy\rpython"\rlib\rjitlog\src' : return code '0x2'
[platform:Error] Stop.
 (somefailed=True in jit/backend/x86/test/test_zrpy_vmprof.py)
builder: rpython-win-x86-64 build #765*
test: jit/backend/x86/test/test_zrpy_vmprof.py::TestZVMprof::()::test_vmprof