LLVM 23.0.0git
ValueLatticeUtils.h
Go to the documentation of this file.
1//===-- ValueLatticeUtils.h - Utils for solving lattices --------*- 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-exception
6//
7//===----------------------------------------------------------------------===//
8//
9// This file declares common functions useful for performing data-flow analyses
10// that propagate values across function boundaries.
11//
12//===----------------------------------------------------------------------===//
13
14#ifndef LLVM_ANALYSIS_VALUELATTICEUTILS_H
15#define LLVM_ANALYSIS_VALUELATTICEUTILS_H
16
18
19namespace llvm {
20
21class Function;
22class GlobalVariable;
23
24/// Determine if the values of the given function's arguments can be tracked
25/// interprocedurally. The value of an argument can be tracked if the function
26/// has local linkage and its address is not taken.
28
29/// Determine if the values of the given function's returns can be tracked
30/// interprocedurally. Return values can be tracked if the function has an
31/// exact definition and it doesn't have the "naked" attribute. Naked functions
32/// may contain assembly code that returns untrackable values.
34
35/// Determine if the value maintained in the given global variable can be
36/// tracked interprocedurally. A value can be tracked if the global variable
37/// has local linkage and is only used by non-volatile loads and stores.
39
40} // end namespace llvm
41
42#endif // LLVM_ANALYSIS_VALUELATTICEUTILS_H
#define LLVM_ABI
Definition Compiler.h:213
#define F(x, y, z)
Definition MD5.cpp:54
This is an optimization pass for GlobalISel generic memory operations.
LLVM_ABI bool canTrackGlobalVariableInterprocedurally(GlobalVariable *GV)
Determine if the value maintained in the given global variable can be tracked interprocedurally.
LLVM_ABI bool canTrackReturnsInterprocedurally(Function *F)
Determine if the values of the given function's returns can be tracked interprocedurally.
LLVM_ABI bool canTrackArgumentsInterprocedurally(Function *F)
Determine if the values of the given function's arguments can be tracked interprocedurally.