• Home
  • Raw
  • Download

Lines Matching refs:doInitialization

402 The ``doInitialization(CallGraph &)`` method
407 virtual bool doInitialization(CallGraph &CG);
409 The ``doInitialization`` method is allowed to do most of the things that
411 functions, get pointers to functions, etc. The ``doInitialization`` method is
413 SCCs being processed. The ``doInitialization`` method call is not scheduled to
467 .. _writing-an-llvm-pass-doInitialization-mod:
469 The ``doInitialization(Module &)`` method
474 virtual bool doInitialization(Module &M);
476 The ``doInitialization`` method is allowed to do most of the things that
478 get pointers to functions, etc. The ``doInitialization`` method is designed to
480 being processed. The ``doInitialization`` method call is not scheduled to
486 ``malloc()`` and ``free()`` function calls. It uses the ``doInitialization``
532 The ``doInitialization(Loop *, LPPassManager &)`` method
537 virtual bool doInitialization(Loop *, LPPassManager &LPM);
539 The ``doInitialization`` method is designed to do simple initialization type of
541 ``doInitialization`` method call is not scheduled to overlap with any other
585 The ``doInitialization(Region *, RGPassManager &)`` method
590 virtual bool doInitialization(Region *, RGPassManager &RGM);
592 The ``doInitialization`` method is designed to do simple initialization type of
594 ``doInitialization`` method call is not scheduled to overlap with any other
642 optimizations. They may override the same :ref:`doInitialization(Module &)
643 <writing-an-llvm-pass-doInitialization-mod>` and :ref:`doFinalization(Module &)
648 The ``doInitialization(Function &)`` method
653 virtual bool doInitialization(Function &F);
655 The ``doInitialization`` method is allowed to do most of the things that
657 can. The ``doInitialization`` method is designed to do simple initialization
659 ``doInitialization`` method call is not scheduled to overlap with any other