mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-15 07:34:33 +00:00
16fd27b2c3
This commit adds scoped noalias metadata. The primary motivations for this feature are: 1. To preserve noalias function attribute information when inlining 2. To provide the ability to model block-scope C99 restrict pointers Neither of these two abilities are added here, only the necessary infrastructure. In fact, there should be no change to existing functionality, only the addition of new features. The logic that converts noalias function parameters into this metadata during inlining will come in a follow-up commit. What is added here is the ability to generally specify noalias memory-access sets. Regarding the metadata, alias-analysis scopes are defined similar to TBAA nodes: !scope0 = metadata !{ metadata !"scope of foo()" } !scope1 = metadata !{ metadata !"scope 1", metadata !scope0 } !scope2 = metadata !{ metadata !"scope 2", metadata !scope0 } !scope3 = metadata !{ metadata !"scope 2.1", metadata !scope2 } !scope4 = metadata !{ metadata !"scope 2.2", metadata !scope2 } Loads and stores can be tagged with an alias-analysis scope, and also, with a noalias tag for a specific scope: ... = load %ptr1, !alias.scope !{ !scope1 } ... = load %ptr2, !alias.scope !{ !scope1, !scope2 }, !noalias !{ !scope1 } When evaluating an aliasing query, if one of the instructions is associated with an alias.scope id that is identical to the noalias scope associated with the other instruction, or is a descendant (in the scope hierarchy) of the noalias scope associated with the other instruction, then the two memory accesses are assumed not to alias. Note that is the first element of the scope metadata is a string, then it can be combined accross functions and translation units. The string can be replaced by a self-reference to create globally unqiue scope identifiers. [Note: This overview is slightly stylized, since the metadata nodes really need to just be numbers (!0 instead of !scope0), and the scope lists are also global unnamed metadata.] Existing noalias metadata in a callee is "cloned" for use by the inlined code. This is necessary because the aliasing scopes are unique to each call site (because of possible control dependencies on the aliasing properties). For example, consider a function: foo(noalias a, noalias b) { *a = *b; } that gets inlined into bar() { ... if (...) foo(a1, b1); ... if (...) foo(a2, b2); } -- now just because we know that a1 does not alias with b1 at the first call site, and a2 does not alias with b2 at the second call site, we cannot let inlining these functons have the metadata imply that a1 does not alias with b2. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@213864 91177308-0d34-0410-b5e6-96231b3b80d8
150 lines
5.5 KiB
C++
150 lines
5.5 KiB
C++
/*===-- Scalar.h - Scalar Transformation Library C Interface ----*- C++ -*-===*\
|
|
|* *|
|
|
|* The LLVM Compiler Infrastructure *|
|
|
|* *|
|
|
|* This file is distributed under the University of Illinois Open Source *|
|
|
|* License. See LICENSE.TXT for details. *|
|
|
|* *|
|
|
|*===----------------------------------------------------------------------===*|
|
|
|* *|
|
|
|* 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. *|
|
|
|* *|
|
|
\*===----------------------------------------------------------------------===*/
|
|
|
|
#ifndef LLVM_C_TRANSFORMS_SCALAR_H
|
|
#define LLVM_C_TRANSFORMS_SCALAR_H
|
|
|
|
#include "llvm-c/Core.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/**
|
|
* @defgroup LLVMCTransformsScalar Scalar transformations
|
|
* @ingroup LLVMCTransforms
|
|
*
|
|
* @{
|
|
*/
|
|
|
|
/** See llvm::createAggressiveDCEPass function. */
|
|
void LLVMAddAggressiveDCEPass(LLVMPassManagerRef PM);
|
|
|
|
/** See llvm::createCFGSimplificationPass function. */
|
|
void LLVMAddCFGSimplificationPass(LLVMPassManagerRef PM);
|
|
|
|
/** See llvm::createDeadStoreEliminationPass function. */
|
|
void LLVMAddDeadStoreEliminationPass(LLVMPassManagerRef PM);
|
|
|
|
/** See llvm::createScalarizerPass function. */
|
|
void LLVMAddScalarizerPass(LLVMPassManagerRef PM);
|
|
|
|
/** See llvm::createMergedLoadStoreMotionPass function. */
|
|
void LLVMAddMergedLoadStoreMotionPass(LLVMPassManagerRef PM);
|
|
|
|
/** See llvm::createGVNPass function. */
|
|
void LLVMAddGVNPass(LLVMPassManagerRef PM);
|
|
|
|
/** See llvm::createIndVarSimplifyPass function. */
|
|
void LLVMAddIndVarSimplifyPass(LLVMPassManagerRef PM);
|
|
|
|
/** See llvm::createInstructionCombiningPass function. */
|
|
void LLVMAddInstructionCombiningPass(LLVMPassManagerRef PM);
|
|
|
|
/** See llvm::createJumpThreadingPass function. */
|
|
void LLVMAddJumpThreadingPass(LLVMPassManagerRef PM);
|
|
|
|
/** See llvm::createLICMPass function. */
|
|
void LLVMAddLICMPass(LLVMPassManagerRef PM);
|
|
|
|
/** See llvm::createLoopDeletionPass function. */
|
|
void LLVMAddLoopDeletionPass(LLVMPassManagerRef PM);
|
|
|
|
/** See llvm::createLoopIdiomPass function */
|
|
void LLVMAddLoopIdiomPass(LLVMPassManagerRef PM);
|
|
|
|
/** See llvm::createLoopRotatePass function. */
|
|
void LLVMAddLoopRotatePass(LLVMPassManagerRef PM);
|
|
|
|
/** See llvm::createLoopRerollPass function. */
|
|
void LLVMAddLoopRerollPass(LLVMPassManagerRef PM);
|
|
|
|
/** See llvm::createLoopUnrollPass function. */
|
|
void LLVMAddLoopUnrollPass(LLVMPassManagerRef PM);
|
|
|
|
/** See llvm::createLoopUnswitchPass function. */
|
|
void LLVMAddLoopUnswitchPass(LLVMPassManagerRef PM);
|
|
|
|
/** See llvm::createMemCpyOptPass function. */
|
|
void LLVMAddMemCpyOptPass(LLVMPassManagerRef PM);
|
|
|
|
/** See llvm::createPartiallyInlineLibCallsPass function. */
|
|
void LLVMAddPartiallyInlineLibCallsPass(LLVMPassManagerRef PM);
|
|
|
|
/** See llvm::createPromoteMemoryToRegisterPass function. */
|
|
void LLVMAddPromoteMemoryToRegisterPass(LLVMPassManagerRef PM);
|
|
|
|
/** See llvm::createReassociatePass function. */
|
|
void LLVMAddReassociatePass(LLVMPassManagerRef PM);
|
|
|
|
/** See llvm::createSCCPPass function. */
|
|
void LLVMAddSCCPPass(LLVMPassManagerRef PM);
|
|
|
|
/** See llvm::createScalarReplAggregatesPass function. */
|
|
void LLVMAddScalarReplAggregatesPass(LLVMPassManagerRef PM);
|
|
|
|
/** See llvm::createScalarReplAggregatesPass function. */
|
|
void LLVMAddScalarReplAggregatesPassSSA(LLVMPassManagerRef PM);
|
|
|
|
/** See llvm::createScalarReplAggregatesPass function. */
|
|
void LLVMAddScalarReplAggregatesPassWithThreshold(LLVMPassManagerRef PM,
|
|
int Threshold);
|
|
|
|
/** See llvm::createSimplifyLibCallsPass function. */
|
|
void LLVMAddSimplifyLibCallsPass(LLVMPassManagerRef PM);
|
|
|
|
/** See llvm::createTailCallEliminationPass function. */
|
|
void LLVMAddTailCallEliminationPass(LLVMPassManagerRef PM);
|
|
|
|
/** See llvm::createConstantPropagationPass function. */
|
|
void LLVMAddConstantPropagationPass(LLVMPassManagerRef PM);
|
|
|
|
/** See llvm::demotePromoteMemoryToRegisterPass function. */
|
|
void LLVMAddDemoteMemoryToRegisterPass(LLVMPassManagerRef PM);
|
|
|
|
/** See llvm::createVerifierPass function. */
|
|
void LLVMAddVerifierPass(LLVMPassManagerRef PM);
|
|
|
|
/** See llvm::createCorrelatedValuePropagationPass function */
|
|
void LLVMAddCorrelatedValuePropagationPass(LLVMPassManagerRef PM);
|
|
|
|
/** See llvm::createEarlyCSEPass function */
|
|
void LLVMAddEarlyCSEPass(LLVMPassManagerRef PM);
|
|
|
|
/** See llvm::createLowerExpectIntrinsicPass function */
|
|
void LLVMAddLowerExpectIntrinsicPass(LLVMPassManagerRef PM);
|
|
|
|
/** See llvm::createTypeBasedAliasAnalysisPass function */
|
|
void LLVMAddTypeBasedAliasAnalysisPass(LLVMPassManagerRef PM);
|
|
|
|
/** See llvm::createScopedNoAliasAAPass function */
|
|
void LLVMAddScopedNoAliasAAPass(LLVMPassManagerRef PM);
|
|
|
|
/** See llvm::createBasicAliasAnalysisPass function */
|
|
void LLVMAddBasicAliasAnalysisPass(LLVMPassManagerRef PM);
|
|
|
|
/**
|
|
* @}
|
|
*/
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif /* defined(__cplusplus) */
|
|
|
|
#endif
|