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

  /external/llvm/tools/bugpoint/
Miscompilation.cpp 563 Module *ProgClone = CloneModule(BD.getProgram(), VMap).release();
565 SplitFunctionsOutOfModule(ProgClone, MiscompiledFunctions, VMap)
572 delete ProgClone;
587 if (Linker::linkModules(*ProgClone, std::move(Extracted)))
591 BD.setNewProgram(ProgClone);
597 Function *NewF = ProgClone->getFunction(MisCompFunctions[i].first);
    [all...]
  /external/swiftshader/third_party/LLVM/tools/bugpoint/
Miscompilation.cpp 554 Module *ProgClone = CloneModule(BD.getProgram(), VMap);
555 Module *ToExtract = SplitFunctionsOutOfModule(ProgClone,
562 delete ProgClone;
579 if (Linker::LinkModules(ProgClone, Extracted, Linker::DestroySource,
588 BD.setNewProgram(ProgClone);
594 Function *NewF = ProgClone->getFunction(MisCompFunctions[i].first);
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/bugpoint/
Miscompilation.cpp 572 std::unique_ptr<Module> ProgClone = CloneModule(BD.getProgram(), VMap);
574 SplitFunctionsOutOfModule(ProgClone.get(), MiscompiledFunctions, VMap);
592 if (Linker::linkModules(*ProgClone, std::move(Extracted)))
596 BD.setNewProgram(std::move(ProgClone));
602 Function *NewF = ProgClone->getFunction(MisCompFunctions[i].first);
    [all...]

Completed in 198 milliseconds