Skip to content
  1. Jun 13, 2017
    • Adrian Prantl's avatar
      Fix an assertion failure when duplicate dbg.declares are present. · f45e6462
      Adrian Prantl authored
      This fixes PR33157.
      https://bugs.llvm.org//show_bug.cgi?id=33157
      
      We might also think about disallowing duplicate dbg.declare intrinsics
      entirely, but this may complicate some passes needlessly.
      
      llvm-svn: 305244
      f45e6462
    • Sanjay Patel's avatar
      fix typos/formatting; NFC · 2ad88f81
      Sanjay Patel authored
      llvm-svn: 305243
      2ad88f81
    • David Blaikie's avatar
      Support: Don't set RLIMIT_AS on child processes when applying a memory limit · 602a5bbb
      David Blaikie authored
      It doesn't seem relevant to set an address space limit - this isn't
      important in any sense that I'm aware & it gets in the way of things
      that use a lot of address space, like llvm-symbolizer.
      
      This came up when I realized that bugpoint regression tests were much
      slower with -gsplit-dwarf than plain -g. Turned out that bugpoint
      subprocesses (opt, etc) were crashing and doing symbolization - but
      bugpoint runs those subprocesses with a 400MB memory limit. So with
      plain -g, mmaping the opt binary would exceed the memory limit, fail,
      and thus be really fast - no symbolization occurred. Whereas with
      -gsplit-dwarf, comically, having less to map in, it would succeed and
      then spend lots of time symbolizing.
      
      I've fixed at least the critical part of bugpoint's perf problem there
      by adding an option to allow bugpoint to disable symbolization. Thus
      improving the perfromance for -gsplit-dwarf and making the -g-esque
      speed available without this quirk/accidental benefit.
      
      llvm-svn: 305242
      602a5bbb
    • George Burgess IV's avatar
      [ADT] Add type-safe methods to FoldingSetImpl; NFC. · d5e999f1
      George Burgess IV authored
      Thankfully, this hasn't uncovered any new bugs. With this, issues like
      the one fixed in r305207 (hopefully) shouldn't happen again.
      
      llvm-svn: 305241
      d5e999f1
    • Zachary Turner's avatar
      Fix printing error. · 5eaeac0c
      Zachary Turner authored
      llvm-svn: 305240
      5eaeac0c
  2. Jun 12, 2017
Loading