/*===-- Scalar.h - Scalar Transformation Library C Interface ----*- C++ -*-===*\
|* *|
|* 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 *|
|* *|
|*===----------------------------------------------------------------------===*|
|* *|
|* This header declares the C interface to libLLVMScalarOpts.a, which *|
|* implements various scalar transformations of the LLVM IR. *|
|* *|
|* Many exotic languages can interoperate with C code but have a harder time *|
|* with C++ due to name mangling. So in addition to C, this interface enables *|
|* tools written in such languages. *|
|* *|
\*===----------------------------------------------------------------------===*/
/**
* @defgroup LLVMCTransformsScalar Scalar transformations
* @ingroup LLVMCTransforms
*
* @{
*/
/** See llvm::createAggressiveDCEPass function. */
void ;
/** See llvm::createDeadCodeEliminationPass function. */
void ;
/** See llvm::createBitTrackingDCEPass function. */
void ;
/** See llvm::createAlignmentFromAssumptionsPass function. */
void ;
/** See llvm::createCFGSimplificationPass function. */
void ;
/** See llvm::createDeadStoreEliminationPass function. */
void ;
/** See llvm::createScalarizerPass function. */
void ;
/** See llvm::createMergedLoadStoreMotionPass function. */
void ;
/** See llvm::createGVNPass function. */
void ;
/** See llvm::createGVNPass function. */
void ;
/** See llvm::createIndVarSimplifyPass function. */
void ;
/** See llvm::createInstructionCombiningPass function. */
void ;
/** See llvm::createInstSimplifyLegacyPass function. */
void ;
/** See llvm::createJumpThreadingPass function. */
void ;
/** See llvm::createLICMPass function. */
void ;
/** See llvm::createLoopDeletionPass function. */
void ;
/** See llvm::createLoopIdiomPass function */
void ;
/** See llvm::createLoopRotatePass function. */
void ;
/** See llvm::createLoopRerollPass function. */
void ;
/** See llvm::createLoopUnrollPass function. */
void ;
/** See llvm::createLoopUnrollAndJamPass function. */
void ;
/** See llvm::createLowerAtomicPass function. */
void ;
/** See llvm::createMemCpyOptPass function. */
void ;
/** See llvm::createPartiallyInlineLibCallsPass function. */
void ;
/** See llvm::createReassociatePass function. */
void ;
/** See llvm::createSCCPPass function. */
void ;
/** See llvm::createSROAPass function. */
void ;
/** See llvm::createSROAPass function. */
void ;
/** See llvm::createSROAPass function. */
void ;
/** See llvm::createSimplifyLibCallsPass function. */
void ;
/** See llvm::createTailCallEliminationPass function. */
void ;
/** See llvm::demotePromoteMemoryToRegisterPass function. */
void ;
/** See llvm::createVerifierPass function. */
void ;
/** See llvm::createCorrelatedValuePropagationPass function */
void ;
/** See llvm::createEarlyCSEPass function */
void ;
/** See llvm::createEarlyCSEPass function */
void ;
/** See llvm::createLowerExpectIntrinsicPass function */
void ;
/** See llvm::createLowerConstantIntrinsicsPass function */
void ;
/** See llvm::createTypeBasedAliasAnalysisPass function */
void ;
/** See llvm::createScopedNoAliasAAPass function */
void ;
/** See llvm::createBasicAliasAnalysisPass function */
void ;
/** See llvm::createUnifyFunctionExitNodesPass function */
void ;
/**
* @}
*/