[PATCH] D45144: [TableGen] Change std::sort to llvm::sort in response to r327219

Mandeep Singh Grang via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Sat Mar 31 19:54:12 PDT 2018


mgrang created this revision.
mgrang added reviewers: stoklund, kparzysz, dsanders.

r327219 added wrappers to std::sort which randomly shuffle the container before sorting.
This will help in uncovering non-determinism caused due to undefined sorting
order of objects having the same key.

To make use of that infrastructure we need to invoke llvm::sort instead of std::sort.

Note: This patch is one of a series of patches to replace *all* std::sort to llvm::sort.
Refer the comments section in https://reviews.llvm.org/D44363 for a list of all the required patches.


Repository:
  rL LLVM

https://reviews.llvm.org/D45144

Files:
  lib/TableGen/Record.cpp
  utils/TableGen/CTagsEmitter.cpp
  utils/TableGen/CodeGenDAGPatterns.cpp
  utils/TableGen/CodeGenRegisters.cpp
  utils/TableGen/CodeGenSchedule.cpp
  utils/TableGen/CodeGenTarget.cpp
  utils/TableGen/DAGISelEmitter.cpp
  utils/TableGen/FastISelEmitter.cpp
  utils/TableGen/GlobalISelEmitter.cpp
  utils/TableGen/InfoByHwMode.cpp
  utils/TableGen/RegisterInfoEmitter.cpp
  utils/TableGen/SubtargetEmitter.cpp

-------------- next part --------------
A non-text attachment was scrubbed...
Name: D45144.140572.patch
Type: text/x-patch
Size: 20115 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20180401/7fc813cd/attachment.bin>


More information about the llvm-commits mailing list