From owner-freebsd-hackers@freebsd.org Wed Aug 23 21:29:09 2017 Return-Path: Delivered-To: freebsd-hackers@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E4570DEF3F6 for ; Wed, 23 Aug 2017 21:29:09 +0000 (UTC) (envelope-from fernando.apesteguia@gmail.com) Received: from mail-lf0-x234.google.com (mail-lf0-x234.google.com [IPv6:2a00:1450:4010:c07::234]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 7337A82453 for ; Wed, 23 Aug 2017 21:29:09 +0000 (UTC) (envelope-from fernando.apesteguia@gmail.com) Received: by mail-lf0-x234.google.com with SMTP id y15so5793513lfd.5 for ; Wed, 23 Aug 2017 14:29:09 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:from:date:message-id:subject:to; bh=FL6m6bT9anjEz6psN8S7zWl6/18GHOiSiimnRAHRM5Y=; b=UMXV0V1V24UMnuH0RShpnarVhzKoUjw5iX2SflmtS4gwX6/G5r8zhK2Ux71fKgN7XD aVhNtoiUvC66+Z7xK4gjo7ZGbQuMa+Z9DfnycPARQlizJyLjfH4UJyzISijOWCit17d4 sXSztED4ISRCWkpGLpaUI3pVg1CoCn8ZdE4rFO/cCTKOVa0la42nD60MSnM+IXtrKYe6 22etsPcAY/1S+QZ/xAGQPXrKV5GM5cnyyuP0GBg/CXoQ31Yv4NyK+GJHhGm8kDdsRu0m bmIPBPSvWi3iiDiQamDQ69D04G2q8Sn8bhBnZvIDQaE4aoLtUBY/b0LanmuaR/CHGbBc /nqg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:from:date:message-id:subject:to; bh=FL6m6bT9anjEz6psN8S7zWl6/18GHOiSiimnRAHRM5Y=; b=gyG9fXpHs+tsEyOXyRUIBrxzV0YDdkChafh36LErbzmopr0XAoMwY6sSp/esKzbHwS qn3ArBRSr5ROyvO1l+fVGgiXLPYXZdzW5XSFLwT4HRxozVIJf2wFXAykQRIXWIkO9UkL U/bGL2XxDcfjZ9Y/TVh/2h9Dnt01EEQxAFKD+BcDJzKaz9avwxcHSCB/JZ8aaIJmOsye aCGcqZ78AJ+tiNsVl5afHqxHq4Z8VpdslaYqGBMXXgDXBObiA6s9Zx+w3RX/VNRO+qQY LduPAh8LB78ke7auSE839HS1XDuA3SEnAwoIUL8PqAkJowIQs665yqVdHKCsk2PNjkEa o34w== X-Gm-Message-State: AHYfb5g19bIe7Vsp7ksJWnovikmr2iIWXKj4UWvLW+a8CSi4AKCmxZQK T3E8atMbDI6lz55FoGekcvyOYD4qJtz6 X-Received: by 10.46.64.79 with SMTP id n76mr1605247lja.108.1503523747242; Wed, 23 Aug 2017 14:29:07 -0700 (PDT) MIME-Version: 1.0 Received: by 10.25.21.225 with HTTP; Wed, 23 Aug 2017 14:29:06 -0700 (PDT) From: =?UTF-8?Q?Fernando_Apestegu=C3=ADa?= Date: Wed, 23 Aug 2017 23:29:06 +0200 Message-ID: Subject: Runaway process in -CURRENT To: FreeBSD Hackers Content-Type: text/plain; charset="UTF-8" X-BeenThere: freebsd-hackers@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Technical Discussions relating to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 Aug 2017 21:29:10 -0000 Hi, cad/stepcode is reported as runaway in -CURRENT. It seems to take forever to compile chemas/sdai_wip210e3/SdaiAll.cc. (it uses clang 5.0.0) What strikes me is that it compiles in my machine in about 10 minutes in 11.1 with clang4.0 I attached a debugger to the c++ process that was eating 100% of the CPU time and stopped it from time to time to get a backtrace. It is always in this function: DAGCombiner::MergeConsecutiveStores I finally stopped the compilation since it seemed it wasn't going to finish. Has anyone seen something like this? Thanks in advance.