Skip to content
  1. Aug 17, 2015
    • Silviu Baranga's avatar
      [CostModel][AArch64] Increase cost of vector insert element and add missing cast costs · b322aa6f
      Silviu Baranga authored
      Summary:
      Increase the estimated costs for insert/extract element operations on
      AArch64. This is motivated by results from benchmarking interleaved
      accesses.
      
      Add missing costs for zext/sext/trunc instructions and some integer to
      floating point conversions. These costs were previously calculated
      by scalarizing these operation and were affected by the cost increase of
      the insert/extract element operations.
      
      Reviewers: rengolin
      
      Subscribers: mcrosier, aemerson, rengolin, llvm-commits
      
      Differential Revision: http://reviews.llvm.org/D11939
      
      llvm-svn: 245226
      b322aa6f
  2. Aug 03, 2015
    • Duncan P. N. Exon Smith's avatar
      DI: Disallow uniquable DICompileUnits · 55ca964e
      Duncan P. N. Exon Smith authored
      Since r241097, `DIBuilder` has only created distinct `DICompileUnit`s.
      The backend is liable to start relying on that (if it hasn't already),
      so make uniquable `DICompileUnit`s illegal and automatically upgrade old
      bitcode.  This is a nice cleanup, since we can remove an unnecessary
      `DenseSet` (and the associated uniquing info) from `LLVMContextImpl`.
      
      Almost all the testcases were updated with this script:
      
          git grep -e '= !DICompileUnit' -l -- test |
          grep -v test/Bitcode |
          xargs sed -i '' -e 's,= !DICompileUnit,= distinct !DICompileUnit,'
      
      I imagine something similar should work for out-of-tree testcases.
      
      llvm-svn: 243885
      55ca964e
  3. Jul 31, 2015
    • Duncan P. N. Exon Smith's avatar
      DI: Remove DW_TAG_arg_variable and DW_TAG_auto_variable · ed013cd2
      Duncan P. N. Exon Smith authored
      Remove the fake `DW_TAG_auto_variable` and `DW_TAG_arg_variable` tags,
      using `DW_TAG_variable` in their place Stop exposing the `tag:` field at
      all in the assembly format for `DILocalVariable`.
      
      Most of the testcase updates were generated by the following sed script:
      
          find test/ -name "*.ll" -o -name "*.mir" |
          xargs grep -l 'DILocalVariable' |
          xargs sed -i '' \
            -e 's/tag: DW_TAG_arg_variable, //' \
            -e 's/tag: DW_TAG_auto_variable, //'
      
      There were only a handful of tests in `test/Assembly` that I needed to
      update by hand.
      
      (Note: a follow-up could change `DILocalVariable::DILocalVariable()` to
      set the tag to `DW_TAG_formal_parameter` instead of `DW_TAG_variable`
      (as appropriate), instead of having that logic magically in the backend
      in `DbgVariable`.  I've added a FIXME to that effect.)
      
      llvm-svn: 243774
      ed013cd2
  4. Jul 30, 2015
  5. Jul 09, 2015
  6. Jul 06, 2015
  7. Jun 19, 2015
  8. Jun 17, 2015
    • David Majnemer's avatar
      Move the personality function from LandingPadInst to Function · 7fddeccb
      David Majnemer authored
      The personality routine currently lives in the LandingPadInst.
      
      This isn't desirable because:
      - All LandingPadInsts in the same function must have the same
        personality routine.  This means that each LandingPadInst beyond the
        first has an operand which produces no additional information.
      
      - There is ongoing work to introduce EH IR constructs other than
        LandingPadInst.  Moving the personality routine off of any one
        particular Instruction and onto the parent function seems a lot better
        than have N different places a personality function can sneak onto an
        exceptional function.
      
      Differential Revision: http://reviews.llvm.org/D10429
      
      llvm-svn: 239940
      7fddeccb
  9. May 07, 2015
  10. Apr 29, 2015
    • Duncan P. N. Exon Smith's avatar
      IR: Give 'DI' prefix to debug info metadata · a9308c49
      Duncan P. N. Exon Smith authored
      Finish off PR23080 by renaming the debug info IR constructs from `MD*`
      to `DI*`.  The last of the `DIDescriptor` classes were deleted in
      r235356, and the last of the related typedefs removed in r235413, so
      this has all baked for about a week.
      
      Note: If you have out-of-tree code (like a frontend), I recommend that
      you get everything compiling and tests passing with the *previous*
      commit before updating to this one.  It'll be easier to keep track of
      what code is using the `DIDescriptor` hierarchy and what you've already
      updated, and I think you're extremely unlikely to insert bugs.  YMMV of
      course.
      
      Back to *this* commit: I did this using the rename-md-di-nodes.sh
      upgrade script I've attached to PR23080 (both code and testcases) and
      filtered through clang-format-diff.py.  I edited the tests for
      test/Assembler/invalid-generic-debug-node-*.ll by hand since the columns
      were off-by-three.  It should work on your out-of-tree testcases (and
      code, if you've followed the advice in the previous paragraph).
      
      Some of the tests are in badly named files now (e.g.,
      test/Assembler/invalid-mdcompositetype-missing-tag.ll should be
      'dicompositetype'); I'll come back and move the files in a follow-up
      commit.
      
      llvm-svn: 236120
      a9308c49
  11. Apr 17, 2015
    • David Blaikie's avatar
      [opaque pointer type] Add textual IR support for explicit type parameter to the call instruction · 23af6484
      David Blaikie authored
      See r230786 and r230794 for similar changes to gep and load
      respectively.
      
      Call is a bit different because it often doesn't have a single explicit
      type - usually the type is deduced from the arguments, and just the
      return type is explicit. In those cases there's no need to change the
      IR.
      
      When that's not the case, the IR usually contains the pointer type of
      the first operand - but since typed pointers are going away, that
      representation is insufficient so I'm just stripping the "pointerness"
      of the explicit type away.
      
      This does make the IR a bit weird - it /sort of/ reads like the type of
      the first operand: "call void () %x(" but %x is actually of type "void
      ()*" and will eventually be just of type "ptr". But this seems not too
      bad and I don't think it would benefit from repeating the type
      ("void (), void () * %x(" and then eventually "void (), ptr %x(") as has
      been done with gep and load.
      
      This also has a side benefit: since the explicit type is no longer a
      pointer, there's no ambiguity between an explicit type and a function
      that returns a function pointer. Previously this case needed an explicit
      type (eg: a function returning a void() function was written as
      "call void () () * @x(" rather than "call void () * @x(" because of the
      ambiguity between a function returning a pointer to a void() function
      and a function returning void).
      
      No ambiguity means even function pointer return types can just be
      written alone, without writing the whole function's type.
      
      This leaves /only/ the varargs case where the explicit type is required.
      
      Given the special type syntax in call instructions, the regex-fu used
      for migration was a bit more involved in its own unique way (as every
      one of these is) so here it is. Use it in conjunction with the apply.sh
      script and associated find/xargs commands I've provided in rr230786 to
      migrate your out of tree tests. Do let me know if any of this doesn't
      cover your cases & we can iterate on a more general script/regexes to
      help others with out of tree tests.
      
      About 9 test cases couldn't be automatically migrated - half of those
      were functions returning function pointers, where I just had to manually
      delete the function argument types now that we didn't need an explicit
      function type there. The other half were typedefs of function types used
      in calls - just had to manually drop the * from those.
      
      import fileinput
      import sys
      import re
      
      pat = re.compile(r'((?:=|:|^|\s)call\s(?:[^@]*?))(\s*$|\s*(?:(?:\[\[[a-zA-Z0-9_]+\]\]|[@%](?:(")?[\\\?@a-zA-Z0-9_.]*?(?(3)"|)|{{.*}}))(?:\(|$)|undef|inttoptr|bitcast|null|asm).*$)')
      addrspace_end = re.compile(r"addrspace\(\d+\)\s*\*$")
      func_end = re.compile("(?:void.*|\)\s*)\*$")
      
      def conv(match, line):
        if not match or re.search(addrspace_end, match.group(1)) or not re.search(func_end, match.group(1)):
          return line
        return line[:match.start()] + match.group(1)[:match.group(1).rfind('*')].rstrip() + match.group(2) + line[match.end():]
      
      for line in sys.stdin:
        sys.stdout.write(conv(re.search(pat, line), line))
      
      llvm-svn: 235145
      23af6484
  12. Mar 27, 2015
    • Duncan P. N. Exon Smith's avatar
      DebugInfo: Fix bad debug info for compile units and types · 988a7f8b
      Duncan P. N. Exon Smith authored
      Fix debug info in these tests, which started failing with a WIP patch to
      verify compile units and types.  The problems look like they were all
      caused by bitrot.  They fell into these categories:
      
        - Using `!{i32 0}` instead of `!{}`.
        - Using `!{null}` instead of `!{}`.
        - Using `!MDExpression()` instead of `!{}`.
        - Using `!8` instead of `!{!8}`.
        - `file:` references that pointed at `MDCompileUnit`s instead of the
          same `MDFile` as the compile unit.
        - `file:` references that were numerically off-by-one or (off-by-ten).
      
      llvm-svn: 233415
      988a7f8b
  13. Mar 15, 2015
    • Duncan P. N. Exon Smith's avatar
      Verifier: Check debug info intrinsic arguments · 166121ad
      Duncan P. N. Exon Smith authored
      Verify that debug info intrinsic arguments are valid.  (These checks
      will not recurse through the full debug info graph, so they don't need
      to be cordoned of in `DebugInfoVerifier`.)
      
      With those checks in place, changing the `DbgIntrinsicInst` accessors to
      downcast to `MDLocalVariable` and `MDExpression` is natural (added isa
      specializations in `Metadata.h` to support this).
      
      Added tests to `test/Verifier` for the new -verify checks, and fixed the
      debug info in all the in-tree tests.
      
      If you have out-of-tree testcases that have started to fail to -verify,
      hopefully the verify checks are helpful.  The most likely problem is
      that the expression argument is `!{}` (instead of `!MDExpression()`).
      
      llvm-svn: 232296
      166121ad
  14. Mar 13, 2015
    • David Blaikie's avatar
      [opaque pointer type] Add textual IR support for explicit type parameter to gep operator · f72d05bc
      David Blaikie authored
      Similar to gep (r230786) and load (r230794) changes.
      
      Similar migration script can be used to update test cases, which
      successfully migrated all of LLVM and Polly, but about 4 test cases
      needed manually changes in Clang.
      
      (this script will read the contents of stdin and massage it into stdout
      - wrap it in the 'apply.sh' script shown in previous commits + xargs to
      apply it over a large set of test cases)
      
      import fileinput
      import sys
      import re
      
      rep = re.compile(r"(getelementptr(?:\s+inbounds)?\s*\()((<\d*\s+x\s+)?([^@]*?)(|\s*addrspace\(\d+\))\s*\*(?(3)>)\s*)(?=$|%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|zeroinitializer|<|\[\[[a-zA-Z]|\{\{)", re.MULTILINE | re.DOTALL)
      
      def conv(match):
        line = match.group(1)
        line += match.group(4)
        line += ", "
        line += match.group(2)
        return line
      
      line = sys.stdin.read()
      off = 0
      for match in re.finditer(rep, line):
        sys.stdout.write(line[off:match.start()])
        sys.stdout.write(conv(match))
        off = match.end()
      sys.stdout.write(line[off:])
      
      llvm-svn: 232184
      f72d05bc
  15. Mar 03, 2015
    • Duncan P. N. Exon Smith's avatar
      DebugInfo: Move new hierarchy into place · e274180f
      Duncan P. N. Exon Smith authored
      Move the specialized metadata nodes for the new debug info hierarchy
      into place, finishing off PR22464.  I've done bootstraps (and all that)
      and I'm confident this commit is NFC as far as DWARF output is
      concerned.  Let me know if I'm wrong :).
      
      The code changes are fairly mechanical:
      
        - Bumped the "Debug Info Version".
        - `DIBuilder` now creates the appropriate subclass of `MDNode`.
        - Subclasses of DIDescriptor now expect to hold their "MD"
          counterparts (e.g., `DIBasicType` expects `MDBasicType`).
        - Deleted a ton of dead code in `AsmWriter.cpp` and `DebugInfo.cpp`
          for printing comments.
        - Big update to LangRef to describe the nodes in the new hierarchy.
          Feel free to make it better.
      
      Testcase changes are enormous.  There's an accompanying clang commit on
      its way.
      
      If you have out-of-tree debug info testcases, I just broke your build.
      
        - `upgrade-specialized-nodes.sh` is attached to PR22564.  I used it to
          update all the IR testcases.
        - Unfortunately I failed to find way to script the updates to CHECK
          lines, so I updated all of these by hand.  This was fairly painful,
          since the old CHECKs are difficult to reason about.  That's one of
          the benefits of the new hierarchy.
      
      This work isn't quite finished, BTW.  The `DIDescriptor` subclasses are
      almost empty wrappers, but not quite: they still have loose casting
      checks (see the `RETURN_FROM_RAW()` macro).  Once they're completely
      gutted, I'll rename the "MD" classes to "DI" and kill the wrappers.  I
      also expect to make a few schema changes now that it's easier to reason
      about everything.
      
      llvm-svn: 231082
      e274180f
  16. Feb 27, 2015
    • David Blaikie's avatar
      [opaque pointer type] Add textual IR support for explicit type parameter to load instruction · a79ac14f
      David Blaikie authored
      Essentially the same as the GEP change in r230786.
      
      A similar migration script can be used to update test cases, though a few more
      test case improvements/changes were required this time around: (r229269-r229278)
      
      import fileinput
      import sys
      import re
      
      pat = re.compile(r"((?:=|:|^)\s*load (?:atomic )?(?:volatile )?(.*?))(| addrspace\(\d+\) *)\*($| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$)")
      
      for line in sys.stdin:
        sys.stdout.write(re.sub(pat, r"\1, \2\3*\4", line))
      
      Reviewers: rafael, dexonsmith, grosser
      
      Differential Revision: http://reviews.llvm.org/D7649
      
      llvm-svn: 230794
      a79ac14f
    • David Blaikie's avatar
      [opaque pointer type] Add textual IR support for explicit type parameter to... · 79e6c749
      David Blaikie authored
      [opaque pointer type] Add textual IR support for explicit type parameter to getelementptr instruction
      
      One of several parallel first steps to remove the target type of pointers,
      replacing them with a single opaque pointer type.
      
      This adds an explicit type parameter to the gep instruction so that when the
      first parameter becomes an opaque pointer type, the type to gep through is
      still available to the instructions.
      
      * This doesn't modify gep operators, only instructions (operators will be
        handled separately)
      
      * Textual IR changes only. Bitcode (including upgrade) and changing the
        in-memory representation will be in separate changes.
      
      * geps of vectors are transformed as:
          getelementptr <4 x float*> %x, ...
        ->getelementptr float, <4 x float*> %x, ...
        Then, once the opaque pointer type is introduced, this will ultimately look
        like:
          getelementptr float, <4 x ptr> %x
        with the unambiguous interpretation that it is a vector of pointers to float.
      
      * address spaces remain on the pointer, not the type:
          getelementptr float addrspace(1)* %x
        ->getelementptr float, float addrspace(1)* %x
        Then, eventually:
          getelementptr float, ptr addrspace(1) %x
      
      Importantly, the massive amount of test case churn has been automated by
      same crappy python code. I had to manually update a few test cases that
      wouldn't fit the script's model (r228970,r229196,r229197,r229198). The
      python script just massages stdin and writes the result to stdout, I
      then wrapped that in a shell script to handle replacing files, then
      using the usual find+xargs to migrate all the files.
      
      update.py:
      import fileinput
      import sys
      import re
      
      ibrep = re.compile(r"(^.*?[^%\w]getelementptr inbounds )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
      normrep = re.compile(       r"(^.*?[^%\w]getelementptr )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
      
      def conv(match, line):
        if not match:
          return line
        line = match.groups()[0]
        if len(match.groups()[5]) == 0:
          line += match.groups()[2]
        line += match.groups()[3]
        line += ", "
        line += match.groups()[1]
        line += "\n"
        return line
      
      for line in sys.stdin:
        if line.find("getelementptr ") == line.find("getelementptr inbounds"):
          if line.find("getelementptr inbounds") != line.find("getelementptr inbounds ("):
            line = conv(re.match(ibrep, line), line)
        elif line.find("getelementptr ") != line.find("getelementptr ("):
          line = conv(re.match(normrep, line), line)
        sys.stdout.write(line)
      
      apply.sh:
      for name in "$@"
      do
        python3 `dirname "$0"`/update.py < "$name" > "$name.tmp" && mv "$name.tmp" "$name"
        rm -f "$name.tmp"
      done
      
      The actual commands:
      From llvm/src:
      find test/ -name *.ll | xargs ./apply.sh
      From llvm/src/tools/clang:
      find test/ -name *.mm -o -name *.m -o -name *.cpp -o -name *.c | xargs -I '{}' ../../apply.sh "{}"
      From llvm/src/tools/polly:
      find test/ -name *.ll | xargs ./apply.sh
      
      After that, check-all (with llvm, clang, clang-tools-extra, lld,
      compiler-rt, and polly all checked out).
      
      The extra 'rm' in the apply.sh script is due to a few files in clang's test
      suite using interesting unicode stuff that my python script was throwing
      exceptions on. None of those files needed to be migrated, so it seemed
      sufficient to ignore those cases.
      
      Reviewers: rafael, dexonsmith, grosser
      
      Differential Revision: http://reviews.llvm.org/D7636
      
      llvm-svn: 230786
      79e6c749
  17. Feb 12, 2015
    • Chandler Carruth's avatar
      [slp] Fix a nasty bug in the SLP vectorizer that Joerg pointed out. · 63aaa98d
      Chandler Carruth authored
      Apparently some code finally started to tickle this after my
      canonicalization changes to instcombine.
      
      The bug stems from trying to form a vector type out of scalars that
      aren't compatible at all. In this example, from x86_mmx values. The code
      in the vectorizer that checks for reasonable types whas checking for
      aggregates or vectors, but there are lots of other types that should
      just never reach the vectorizer.
      
      Debugging this was made more confusing by the lie in an assert in
      VectorType::get() -- it isn't that the types are *primitive*. The types
      must be integer, pointer, or floating point types. No other types are
      allowed.
      
      I've improved the assert and added a helper to the vectorizer to handle
      the element type validity checks. It now re-uses the VectorType static
      function and then further excludes weird target-specific types that we
      probably shouldn't be touching here (x86_fp80 and ppc_fp128). Neither of
      these are really reachable anyways (neither 80-bit nor 128-bit things
      will get vectorized) but it seems better to just eagerly exclude such
      nonesense.
      
      I've added a test case, but while it definitely covers two of the paths
      through this code there may be more paths that would benefit from test
      coverage. I'm not familiar enough with the SLP vectorizer to synthesize
      test cases for all of these, but was able to update the code itself by
      inspection.
      
      llvm-svn: 228899
      63aaa98d
  18. Feb 02, 2015
    • Erik Eckstein's avatar
      Fix: SLPVectorizer crashes with assertion when vectorizing a cmp instruction. · 7330e358
      Erik Eckstein authored
      The commit r225977 uncovered this bug. The problem was that the vectorizer tried to
      read the second operand of an already deleted instruction.
      The bug didn't show up before r225977 because the freed memory still contained a non-null pointer.
      With r225977 deletion of instructions is delayed and the read operand pointer is always null.
      
      llvm-svn: 227800
      7330e358
  19. Jan 26, 2015
  20. Jan 20, 2015
  21. Jan 14, 2015
    • Duncan P. N. Exon Smith's avatar
      IR: Move MDLocation into place · 98854699
      Duncan P. N. Exon Smith authored
      This commit moves `MDLocation`, finishing off PR21433.  There's an
      accompanying clang commit for frontend testcases.  I'll attach the
      testcase upgrade script I used to PR21433 to help out-of-tree
      frontends/backends.
      
      This changes the schema for `DebugLoc` and `DILocation` from:
      
          !{i32 3, i32 7, !7, !8}
      
      to:
      
          !MDLocation(line: 3, column: 7, scope: !7, inlinedAt: !8)
      
      Note that empty fields (line/column: 0 and inlinedAt: null) don't get
      printed by the assembly writer.
      
      llvm-svn: 226048
      98854699
  22. Dec 17, 2014
  23. Dec 15, 2014
    • Duncan P. N. Exon Smith's avatar
      IR: Make metadata typeless in assembly · be7ea19b
      Duncan P. N. Exon Smith authored
      Now that `Metadata` is typeless, reflect that in the assembly.  These
      are the matching assembly changes for the metadata/value split in
      r223802.
      
        - Only use the `metadata` type when referencing metadata from a call
          intrinsic -- i.e., only when it's used as a `Value`.
      
        - Stop pretending that `ValueAsMetadata` is wrapped in an `MDNode`
          when referencing it from call intrinsics.
      
      So, assembly like this:
      
          define @foo(i32 %v) {
            call void @llvm.foo(metadata !{i32 %v}, metadata !0)
            call void @llvm.foo(metadata !{i32 7}, metadata !0)
            call void @llvm.foo(metadata !1, metadata !0)
            call void @llvm.foo(metadata !3, metadata !0)
            call void @llvm.foo(metadata !{metadata !3}, metadata !0)
            ret void, !bar !2
          }
          !0 = metadata !{metadata !2}
          !1 = metadata !{i32* @global}
          !2 = metadata !{metadata !3}
          !3 = metadata !{}
      
      turns into this:
      
          define @foo(i32 %v) {
            call void @llvm.foo(metadata i32 %v, metadata !0)
            call void @llvm.foo(metadata i32 7, metadata !0)
            call void @llvm.foo(metadata i32* @global, metadata !0)
            call void @llvm.foo(metadata !3, metadata !0)
            call void @llvm.foo(metadata !{!3}, metadata !0)
            ret void, !bar !2
          }
          !0 = !{!2}
          !1 = !{i32* @global}
          !2 = !{!3}
          !3 = !{}
      
      I wrote an upgrade script that handled almost all of the tests in llvm
      and many of the tests in cfe (even handling many `CHECK` lines).  I've
      attached it (or will attach it in a moment if you're speedy) to PR21532
      to help everyone update their out-of-tree testcases.
      
      This is part of PR21532.
      
      llvm-svn: 224257
      be7ea19b
    • Suyog Sarda's avatar
      Typo Correction in Test Case. NFC. · 2b27fc78
      Suyog Sarda authored
      llvm-svn: 224244
      2b27fc78
  24. Dec 12, 2014
  25. Nov 19, 2014
  26. Oct 15, 2014
    • Hal Finkel's avatar
      [SLPVectorize] Basic ephemeral-value awareness · 3b7fc866
      Hal Finkel authored
      The SLP vectorizer should not vectorize ephemeral values. These are used to
      express information to the optimizer, and vectorizing them does not lead to
      faster code (because the ephemeral values are dropped prior to code generation,
      vectorized or not), and obscures the information the instructions are
      attempting to communicate (the logic that interprets the arguments to
      @llvm.assume generically does not understand vectorized conditions).
      
      Also, uses by ephemeral values are free (because they, and the necessary
      extractelement instructions, will be dropped prior to code generation).
      
      llvm-svn: 219816
      3b7fc866
  27. Oct 03, 2014
    • Duncan P. N. Exon Smith's avatar
      Revert "Revert "DI: Fold constant arguments into a single MDString"" · 176b691d
      Duncan P. N. Exon Smith authored
      This reverts commit r218918, effectively reapplying r218914 after fixing
      an Ocaml bindings test and an Asan crash.  The root cause of the latter
      was a tightened-up check in `DILexicalBlock::Verify()`, so I'll file a
      PR to investigate who requires the loose check (and why).
      
      Original commit message follows.
      
      --
      
      This patch addresses the first stage of PR17891 by folding constant
      arguments together into a single MDString.  Integers are stringified and
      a `\0` character is used as a separator.
      
      Part of PR17891.
      
      Note: I've attached my testcases upgrade scripts to the PR.  If I've
      just broken your out-of-tree testcases, they might help.
      
      llvm-svn: 219010
      176b691d
    • Duncan P. N. Exon Smith's avatar
      Revert "DI: Fold constant arguments into a single MDString" · 786cd049
      Duncan P. N. Exon Smith authored
      This reverts commit r218914 while I investigate some bots.
      
      llvm-svn: 218918
      786cd049
  28. Oct 02, 2014
    • Duncan P. N. Exon Smith's avatar
      DI: Fold constant arguments into a single MDString · 571f97bd
      Duncan P. N. Exon Smith authored
      This patch addresses the first stage of PR17891 by folding constant
      arguments together into a single MDString.  Integers are stringified and
      a `\0` character is used as a separator.
      
      Part of PR17891.
      
      Note: I've attached my testcases upgrade scripts to the PR.  If I've
      just broken your out-of-tree testcases, they might help.
      
      llvm-svn: 218914
      571f97bd
  29. Oct 01, 2014
    • Adrian Prantl's avatar
      Move the complex address expression out of DIVariable and into an extra · 87b7eb9d
      Adrian Prantl authored
      argument of the llvm.dbg.declare/llvm.dbg.value intrinsics.
      
      Previously, DIVariable was a variable-length field that has an optional
      reference to a Metadata array consisting of a variable number of
      complex address expressions. In the case of OpPiece expressions this is
      wasting a lot of storage in IR, because when an aggregate type is, e.g.,
      SROA'd into all of its n individual members, the IR will contain n copies
      of the DIVariable, all alike, only differing in the complex address
      reference at the end.
      
      By making the complex address into an extra argument of the
      dbg.value/dbg.declare intrinsics, all of the pieces can reference the
      same variable and the complex address expressions can be uniqued across
      the CU, too.
      Down the road, this will allow us to move other flags, such as
      "indirection" out of the DIVariable, too.
      
      The new intrinsics look like this:
      declare void @llvm.dbg.declare(metadata %storage, metadata %var, metadata %expr)
      declare void @llvm.dbg.value(metadata %storage, i64 %offset, metadata %var, metadata %expr)
      
      This patch adds a new LLVM-local tag to DIExpressions, so we can detect
      and pretty-print DIExpression metadata nodes.
      
      What this patch doesn't do:
      
      This patch does not touch the "Indirect" field in DIVariable; but moving
      that into the expression would be a natural next step.
      
      http://reviews.llvm.org/D4919
      rdar://problem/17994491
      
      Thanks to dblaikie and dexonsmith for reviewing this patch!
      
      Note: I accidentally committed a bogus older version of this patch previously.
      llvm-svn: 218787
      87b7eb9d
    • Adrian Prantl's avatar
      Revert r218778 while investigating buldbot breakage. · b458dc2e
      Adrian Prantl authored
      "Move the complex address expression out of DIVariable and into an extra"
      
      llvm-svn: 218782
      b458dc2e
    • Adrian Prantl's avatar
      Move the complex address expression out of DIVariable and into an extra · 25a7174e
      Adrian Prantl authored
      argument of the llvm.dbg.declare/llvm.dbg.value intrinsics.
      
      Previously, DIVariable was a variable-length field that has an optional
      reference to a Metadata array consisting of a variable number of
      complex address expressions. In the case of OpPiece expressions this is
      wasting a lot of storage in IR, because when an aggregate type is, e.g.,
      SROA'd into all of its n individual members, the IR will contain n copies
      of the DIVariable, all alike, only differing in the complex address
      reference at the end.
      
      By making the complex address into an extra argument of the
      dbg.value/dbg.declare intrinsics, all of the pieces can reference the
      same variable and the complex address expressions can be uniqued across
      the CU, too.
      Down the road, this will allow us to move other flags, such as
      "indirection" out of the DIVariable, too.
      
      The new intrinsics look like this:
      declare void @llvm.dbg.declare(metadata %storage, metadata %var, metadata %expr)
      declare void @llvm.dbg.value(metadata %storage, i64 %offset, metadata %var, metadata %expr)
      
      This patch adds a new LLVM-local tag to DIExpressions, so we can detect
      and pretty-print DIExpression metadata nodes.
      
      What this patch doesn't do:
      
      This patch does not touch the "Indirect" field in DIVariable; but moving
      that into the expression would be a natural next step.
      
      http://reviews.llvm.org/D4919
      rdar://problem/17994491
      
      Thanks to dblaikie and dexonsmith for reviewing this patch!
      
      llvm-svn: 218778
      25a7174e
  30. Sep 29, 2014
  31. Sep 03, 2014
  32. Sep 02, 2014
Loading