HomeSort by relevance Sort by last modified time
    Searched refs:MergeFunctions (Results 1 - 2 of 2) sorted by null

  /external/llvm/lib/Transforms/IPO/
Android.mk 19 MergeFunctions.cpp \
MergeFunctions.cpp 1 //===- MergeFunctions.cpp - Merge identical functions ---------------------===//
535 /// MergeFunctions finds functions which will generate identical machine code,
537 /// MergeFunctions will fold them by replacing a call to one to a call to a
540 class MergeFunctions : public ModulePass {
543 MergeFunctions()
601 char MergeFunctions::ID = 0;
602 INITIALIZE_PASS(MergeFunctions, "mergefunc", "Merge Functions", false, false)
605 return new MergeFunctions();
608 bool MergeFunctions::runOnModule(Module &M) {
681 void MergeFunctions::replaceDirectCallers(Function *Old, Function *New)
    [all...]

Completed in 107 milliseconds