[PATCH] D45142: [Transforms] 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:45:26 PDT 2018


mgrang created this revision.
mgrang added reviewers: kcc, pcc, danielcdh, jmolloy, sanjoy, dberlin.

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/D45142

Files:
  lib/Transforms/Coroutines/CoroFrame.cpp
  lib/Transforms/IPO/LowerTypeTests.cpp
  lib/Transforms/IPO/SampleProfile.cpp
  lib/Transforms/Instrumentation/GCOVProfiling.cpp
  lib/Transforms/Instrumentation/SanitizerCoverage.cpp
  lib/Transforms/Scalar/ConstantHoisting.cpp
  lib/Transforms/Scalar/GVNHoist.cpp
  lib/Transforms/Scalar/GVNSink.cpp
  lib/Transforms/Scalar/GuardWidening.cpp
  lib/Transforms/Scalar/LoopSink.cpp
  lib/Transforms/Scalar/LoopStrengthReduce.cpp
  lib/Transforms/Scalar/MergeICmps.cpp
  lib/Transforms/Scalar/NewGVN.cpp
  lib/Transforms/Scalar/PlaceSafepoints.cpp
  lib/Transforms/Scalar/RewriteStatepointsForGC.cpp
  lib/Transforms/Scalar/SROA.cpp
  lib/Transforms/Scalar/SimpleLoopUnswitch.cpp
  lib/Transforms/Utils/ImportedFunctionsInliningStatistics.cpp
  lib/Transforms/Utils/LowerSwitch.cpp
  lib/Transforms/Utils/PredicateInfo.cpp
  lib/Transforms/Utils/PromoteMemoryToRegister.cpp
  lib/Transforms/Utils/SimplifyCFG.cpp
  lib/Transforms/Utils/SplitModule.cpp

-------------- next part --------------
A non-text attachment was scrubbed...
Name: D45142.140570.patch
Type: text/x-patch
Size: 23140 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20180401/5065458a/attachment.bin>


More information about the llvm-commits mailing list