Lines Matching full:pass
27 class Pass;
71 * @brief Used to set a string that contains the overridden pass options.
72 * @details An overridden pass option means that the pass uses this option
107 /** @brief Whether or not we print all the passes when we create the pass manager */
110 /** @brief Whether or not we print all the pass options when we create the pass manager */
123 void AddPass(const Pass* pass) {
124 passes_.push_back(pass);
127 * @brief Print the pass names of all the passes available.
130 const std::vector<const Pass*>* GetDefaultPassList() const {
139 std::vector<const Pass*> passes_;
141 /** @brief The default pass list is used to initialize pass_list_. */
142 std::vector<const Pass*> default_pass_list_;
144 /** @brief Pass manager options. */