1. 23 8月, 2018 1 次提交
  2. 27 7月, 2018 1 次提交
  3. 25 7月, 2018 1 次提交
  4. 14 6月, 2018 1 次提交
  5. 17 5月, 2018 1 次提交
  6. 11 5月, 2018 1 次提交
  7. 10 5月, 2018 1 次提交
  8. 09 5月, 2018 1 次提交
  9. 08 5月, 2018 1 次提交
  10. 25 4月, 2018 3 次提交
  11. 20 3月, 2018 1 次提交
  12. 16 3月, 2018 1 次提交
  13. 09 3月, 2018 1 次提交
  14. 02 3月, 2018 1 次提交
  15. 26 2月, 2018 1 次提交
  16. 14 2月, 2018 1 次提交
  17. 10 1月, 2018 1 次提交
  18. 01 1月, 2018 1 次提交
  19. 20 12月, 2017 2 次提交
  20. 06 12月, 2017 1 次提交
  21. 01 12月, 2017 2 次提交
  22. 20 11月, 2017 1 次提交
  23. 18 11月, 2017 1 次提交
  24. 15 11月, 2017 1 次提交
  25. 11 11月, 2017 1 次提交
  26. 08 11月, 2017 1 次提交
  27. 07 11月, 2017 3 次提交
  28. 05 11月, 2017 1 次提交
  29. 27 10月, 2017 1 次提交
  30. 25 10月, 2017 1 次提交
  31. 22 10月, 2017 1 次提交
    • A
      rustc: Move bytecode compression into codegen · 8197a0bb
      Alex Crichton 提交于
      This commit moves compression of the bytecode from the `link` module to the
      `write` module, namely allowing it to be (a) cached by incremental compilation
      and (b) produced in parallel. The parallelization may show up as some nice wins
      during normal compilation and the caching in incremental mode should be
      beneficial for incremental compiles! (no more need to recompress the entire
      crate's bitcode on all builds)
      8197a0bb
  32. 17 10月, 2017 1 次提交
  33. 16 10月, 2017 1 次提交
    • J
      Refactor `ensure` and `try_get_with` into `read_node_index` · 549f8553
      Jimmy Brisson 提交于
      There was a bit of code shared between `try_get_with` and `ensure`, after I
      added `ensure`. I refactored that shared code into a query-agnostic method
      called `read_node_index`.
      
      The new method `read_node_index` will attempt to find the node
      index (`DepNodeIndex`) of a query. When `read_node_index` finds the
      `DepNodeIndex`, it marks the current query as a reader of the node it's
      requesting the index of.
      
      This is used by `try_get_with` and `ensure` as it elides the unimportant (to
      them) details of if the query is invalidated by previous changed computation (Red)
      or new and if they had to mark the query green. For both `try_get_with` and
      `ensure`, they just need to know if they can lookup the results or have to
      reevaluate.
      549f8553
  34. 05 10月, 2017 1 次提交