brintos

brintos / llvm-project-archived public Read only

0
0
Text · 1.2 KiB · 6c3382e Raw
34 lines · c
1//===-- DebugOptions.h - Global Command line opt for libSupport  *- C++ -*-===//2//3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.4// See https://llvm.org/LICENSE.txt for license information.5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception6//7//===----------------------------------------------------------------------===//8//9// This file defines the entry point to initialize the options registered on the10// command line for libSupport, this is internal to libSupport.11//12//===----------------------------------------------------------------------===//13 14#ifndef LLVM_SUPPORT_DEBUGOPTIONS_H15#define LLVM_SUPPORT_DEBUGOPTIONS_H16 17namespace llvm {18 19// These are invoked internally before parsing command line options.20// This enables lazy-initialization of all the globals in libSupport, instead21// of eagerly loading everything on program startup.22void initDebugCounterOptions();23void initGraphWriterOptions();24void initSignalsOptions();25void initStatisticOptions();26void initTimerOptions();27void initWithColorOptions();28void initDebugOptions();29void initRandomSeedOptions();30 31} // namespace llvm32 33#endif // LLVM_SUPPORT_DEBUGOPTIONS_H34