LLVM 22.0.0git
VNCoercion.h
Go to the documentation of this file.
1//===- VNCoercion.h - Value Numbering Coercion Utilities --------*- 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/// \file / This file provides routines used by LLVM's value numbering passes to
9/// perform various forms of value extraction from memory when the types are not
10/// identical. For example, given
11///
12/// store i32 8, i32 *%foo
13/// %a = bitcast i32 *%foo to i16
14/// %val = load i16, i16 *%a
15///
16/// It possible to extract the value of the load of %a from the store to %foo.
17/// These routines know how to tell whether they can do that (the analyze*
18/// routines), and can also insert the necessary IR to do it (the get*
19/// routines).
20
21#ifndef LLVM_TRANSFORMS_UTILS_VNCOERCION_H
22#define LLVM_TRANSFORMS_UTILS_VNCOERCION_H
23
24namespace llvm {
25class Constant;
26class Function;
27class StoreInst;
28class LoadInst;
29class MemIntrinsic;
30class Instruction;
31class IRBuilderBase;
32class Value;
33class Type;
34class DataLayout;
35namespace VNCoercion {
36/// Return true if CoerceAvailableValueToLoadType would succeed if it was
37/// called.
38bool canCoerceMustAliasedValueToLoad(Value *StoredVal, Type *LoadTy,
39 Function *F);
40
41/// If we saw a store of a value to memory, and then a load from a must-aliased
42/// pointer of a different type, try to coerce the stored value to the loaded
43/// type. LoadedTy is the type of the load we want to replace. IRB is
44/// IRBuilder used to insert new instructions.
45///
46/// If we can't do it, return null.
47Value *coerceAvailableValueToLoadType(Value *StoredVal, Type *LoadedTy,
48 IRBuilderBase &IRB, Function *F);
49
50/// This function determines whether a value for the pointer LoadPtr can be
51/// extracted from the store at DepSI.
52///
53/// On success, it returns the offset into DepSI that extraction would start.
54/// On failure, it returns -1.
55int analyzeLoadFromClobberingStore(Type *LoadTy, Value *LoadPtr,
56 StoreInst *DepSI, const DataLayout &DL);
57
58/// This function determines whether a value for the pointer LoadPtr can be
59/// extracted from the load at DepLI.
60///
61/// On success, it returns the offset into DepLI that extraction would start.
62/// On failure, it returns -1.
63int analyzeLoadFromClobberingLoad(Type *LoadTy, Value *LoadPtr, LoadInst *DepLI,
64 const DataLayout &DL);
65
66/// This function determines whether a value for the pointer LoadPtr can be
67/// extracted from the memory intrinsic at DepMI.
68///
69/// On success, it returns the offset into DepMI that extraction would start.
70/// On failure, it returns -1.
71int analyzeLoadFromClobberingMemInst(Type *LoadTy, Value *LoadPtr,
72 MemIntrinsic *DepMI, const DataLayout &DL);
73
74/// If analyzeLoadFromClobberingStore/Load returned an offset, this function
75/// can be used to actually perform the extraction of the bits from the store.
76/// It inserts instructions to do so at InsertPt, and returns the extracted
77/// value.
78Value *getValueForLoad(Value *SrcVal, unsigned Offset, Type *LoadTy,
79 Instruction *InsertPt, Function *F);
80// This is the same as getValueForLoad, except it performs no insertion.
81// It only allows constant inputs.
83 Type *LoadTy, const DataLayout &DL);
84
85/// If analyzeLoadFromClobberingMemInst returned an offset, this function can be
86/// used to actually perform the extraction of the bits from the memory
87/// intrinsic. It inserts instructions to do so at InsertPt, and returns the
88/// extracted value.
90 Type *LoadTy, Instruction *InsertPt,
91 const DataLayout &DL);
92// This is the same as getStoreValueForLoad, except it performs no insertion.
93// It returns nullptr if it cannot produce a constant.
95 Type *LoadTy, const DataLayout &DL);
96}
97}
98#endif
MachineBasicBlock MachineBasicBlock::iterator DebugLoc DL
#define F(x, y, z)
Definition MD5.cpp:55
This is an important base class in LLVM.
Definition Constant.h:43
A parsed version of the target data layout string in and methods for querying it.
Definition DataLayout.h:63
Common base class shared among various IRBuilders.
Definition IRBuilder.h:114
An instruction for reading from memory.
This is the common base class for memset/memcpy/memmove.
An instruction for storing to memory.
The instances of the Type class are immutable: once they are created, they are never changed.
Definition Type.h:45
LLVM Value Representation.
Definition Value.h:75
int analyzeLoadFromClobberingStore(Type *LoadTy, Value *LoadPtr, StoreInst *DepSI, const DataLayout &DL)
This function determines whether a value for the pointer LoadPtr can be extracted from the store at D...
Value * getMemInstValueForLoad(MemIntrinsic *SrcInst, unsigned Offset, Type *LoadTy, Instruction *InsertPt, const DataLayout &DL)
If analyzeLoadFromClobberingMemInst returned an offset, this function can be used to actually perform...
Constant * getConstantValueForLoad(Constant *SrcVal, unsigned Offset, Type *LoadTy, const DataLayout &DL)
Value * coerceAvailableValueToLoadType(Value *StoredVal, Type *LoadedTy, IRBuilderBase &IRB, Function *F)
If we saw a store of a value to memory, and then a load from a must-aliased pointer of a different ty...
int analyzeLoadFromClobberingLoad(Type *LoadTy, Value *LoadPtr, LoadInst *DepLI, const DataLayout &DL)
This function determines whether a value for the pointer LoadPtr can be extracted from the load at De...
Constant * getConstantMemInstValueForLoad(MemIntrinsic *SrcInst, unsigned Offset, Type *LoadTy, const DataLayout &DL)
Value * getValueForLoad(Value *SrcVal, unsigned Offset, Type *LoadTy, Instruction *InsertPt, Function *F)
If analyzeLoadFromClobberingStore/Load returned an offset, this function can be used to actually perf...
int analyzeLoadFromClobberingMemInst(Type *LoadTy, Value *LoadPtr, MemIntrinsic *DepMI, const DataLayout &DL)
This function determines whether a value for the pointer LoadPtr can be extracted from the memory int...
bool canCoerceMustAliasedValueToLoad(Value *StoredVal, Type *LoadTy, Function *F)
Return true if CoerceAvailableValueToLoadType would succeed if it was called.
This is an optimization pass for GlobalISel generic memory operations.
@ Offset
Definition DWP.cpp:477