Index: llvm/trunk/lib/Analysis/IPA/CallGraph.cpp =================================================================== --- llvm/trunk/lib/Analysis/IPA/CallGraph.cpp +++ llvm/trunk/lib/Analysis/IPA/CallGraph.cpp @@ -98,8 +98,26 @@ OS << "<>\n"; } - for (CallGraph::const_iterator I = begin(), E = end(); I != E; ++I) - I->second->print(OS); + // Print in a deterministic order by sorting CallGraphNodes by name. We do + // this here to avoid slowing down the non-printing fast path. + + SmallVector Nodes; + Nodes.reserve(FunctionMap.size()); + + for (auto I = begin(), E = end(); I != E; ++I) + Nodes.push_back(I->second); + + std::sort(Nodes.begin(), Nodes.end(), + [](CallGraphNode *LHS, CallGraphNode *RHS) { + if (Function *LF = LHS->getFunction()) + if (Function *RF = RHS->getFunction()) + return LF->getName() < RF->getName(); + + return RHS->getFunction() != nullptr; + }); + + for (CallGraphNode *CN : Nodes) + CN->print(OS); } #if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP) Index: llvm/trunk/test/Analysis/CallGraph/non-leaf-intrinsics.ll =================================================================== --- llvm/trunk/test/Analysis/CallGraph/non-leaf-intrinsics.ll +++ llvm/trunk/test/Analysis/CallGraph/non-leaf-intrinsics.ll @@ -25,8 +25,8 @@ ; CHECK: Call graph node <> ; CHECK: CS<0x0> calls function 'f' -; CHECK: Call graph node for function: 'calls_statepoint' -; CHECK-NEXT: CS<[[addr_0:[^>]+]]> calls external node - ; CHECK: Call graph node for function: 'calls_patchpoint' ; CHECK-NEXT: CS<[[addr_1:[^>]+]]> calls external node + +; CHECK: Call graph node for function: 'calls_statepoint' +; CHECK-NEXT: CS<[[addr_0:[^>]+]]> calls external node