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

  /external/llvm/examples/Kaleidoscope/Chapter4/
toy.cpp 392 static std::unique_ptr<legacy::FunctionPassManager> TheFPM;
515 TheFPM->run(*TheFunction);
535 TheFPM = llvm::make_unique<legacy::FunctionPassManager>(TheModule.get());
538 TheFPM->add(createInstructionCombiningPass());
540 TheFPM->add(createReassociatePass());
542 TheFPM->add(createGVNPass());
544 TheFPM->add(createCFGSimplificationPass());
546 TheFPM->doInitialization();
  /external/llvm/examples/Kaleidoscope/Chapter5/
toy.cpp 516 static std::unique_ptr<legacy::FunctionPassManager> TheFPM;
789 TheFPM->run(*TheFunction);
809 TheFPM = llvm::make_unique<legacy::FunctionPassManager>(TheModule.get());
812 TheFPM->add(createInstructionCombiningPass());
814 TheFPM->add(createReassociatePass());
816 TheFPM->add(createGVNPass());
818 TheFPM->add(createCFGSimplificationPass());
820 TheFPM->doInitialization();
  /external/llvm/examples/Kaleidoscope/Chapter6/
toy.cpp 607 static std::unique_ptr<legacy::FunctionPassManager> TheFPM;
904 TheFPM->run(*TheFunction);
927 TheFPM = llvm::make_unique<legacy::FunctionPassManager>(TheModule.get());
930 TheFPM->add(createInstructionCombiningPass());
932 TheFPM->add(createReassociatePass());
934 TheFPM->add(createGVNPass());
936 TheFPM->add(createCFGSimplificationPass());
938 TheFPM->doInitialization();
  /external/llvm/examples/Kaleidoscope/Chapter7/
toy.cpp 677 static std::unique_ptr<legacy::FunctionPassManager> TheFPM;
1070 TheFPM->run(*TheFunction);
1093 TheFPM = llvm::make_unique<legacy::FunctionPassManager>(TheModule.get());
1096 TheFPM->add(createInstructionCombiningPass());
1098 TheFPM->add(createReassociatePass());
1100 TheFPM->add(createGVNPass());
1102 TheFPM->add(createCFGSimplificationPass());
1104 TheFPM->doInitialization();
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/cached/
toy-jit.cpp 625 static FunctionPassManager *TheFPM;
1011 TheFPM->run(*TheFunction);
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/lazy/
toy-jit.cpp 610 static FunctionPassManager *TheFPM;
993 TheFPM->run(*TheFunction);
    [all...]

Completed in 117 milliseconds