mirror of
https://github.com/llvm/llvm-project.git
synced 2025-05-04 05:06:07 +00:00

PassBuilder.cpp is the slowest file to compile in LLVM. When trying to test changes to pipelines, it takes a long time to recompile. This doesn't actually speedup building PassBuilder.cpp itself since most of the time is spent in other large/duplicated functions caused by PassRegistry.def. Reviewed By: asbirlea Differential Revision: https://reviews.llvm.org/D109798
31 lines
1001 B
C++
31 lines
1001 B
C++
//===- OptimizationLevel.cpp ----------------------------------------------===//
|
|
//
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "llvm/Passes/OptimizationLevel.h"
|
|
|
|
using namespace llvm;
|
|
|
|
const OptimizationLevel OptimizationLevel::O0 = {
|
|
/*SpeedLevel*/ 0,
|
|
/*SizeLevel*/ 0};
|
|
const OptimizationLevel OptimizationLevel::O1 = {
|
|
/*SpeedLevel*/ 1,
|
|
/*SizeLevel*/ 0};
|
|
const OptimizationLevel OptimizationLevel::O2 = {
|
|
/*SpeedLevel*/ 2,
|
|
/*SizeLevel*/ 0};
|
|
const OptimizationLevel OptimizationLevel::O3 = {
|
|
/*SpeedLevel*/ 3,
|
|
/*SizeLevel*/ 0};
|
|
const OptimizationLevel OptimizationLevel::Os = {
|
|
/*SpeedLevel*/ 2,
|
|
/*SizeLevel*/ 1};
|
|
const OptimizationLevel OptimizationLevel::Oz = {
|
|
/*SpeedLevel*/ 2,
|
|
/*SizeLevel*/ 2};
|