Static Value-Flow Analysis
Loading...
Searching...
No Matches
Macros | Functions
BreakConstantExpr.cpp File Reference
#include "llvm/ADT/Statistic.h"
#include "llvm/IR/Constants.h"
#include "llvm/IR/InstrTypes.h"
#include "llvm/IR/Instruction.h"
#include "llvm/IR/Instructions.h"
#include "llvm/IR/LLVMContext.h"
#include "llvm/IR/InstIterator.h"
#include "SVF-LLVM/BasicTypes.h"
#include "SVF-LLVM/BreakConstantExpr.h"
#include "Util/GeneralType.h"
#include "Util/SVFUtil.h"
#include <iostream>
#include <map>
#include <utility>

Go to the source code of this file.

Macros

#define DEBUG_TYPE   "break-constgeps"
 

Functions

 STATISTIC (GEPChanges, "Number of Converted GEP Constant Expressions")
 
 STATISTIC (TotalChanges, "Number of Converted Constant Expressions")
 
static ConstantExprhasConstantGEP (Value *V)
 
static ConstantExprhasConstantBinaryOrUnaryOp (Value *V)
 
static ConstantExprhasConstantExpr (Value *V)
 
static InstructionconvertExpression (ConstantExpr *CE, Instruction *InsertPt)
 

Macro Definition Documentation

◆ DEBUG_TYPE

#define DEBUG_TYPE   "break-constgeps"

Definition at line 67 of file BreakConstantExpr.cpp.

Function Documentation

◆ convertExpression()

static Instruction * convertExpression ( ConstantExpr CE,
Instruction InsertPt 
)
static

Definition at line 164 of file BreakConstantExpr.cpp.

165{
166 //
167 // Convert this constant expression into a regular instruction.
168 //
169 if (CE->getOpcode() == Instruction::GetElementPtr)
170 ++GEPChanges;
171 ++TotalChanges;
172 Instruction* Result = CE->getAsInstruction();
173 Result->insertBefore(InsertPt);
174 return Result;
175}
llvm::Instruction Instruction
Definition BasicTypes.h:87
llvm::IRBuilder IRBuilder
Definition BasicTypes.h:74

◆ hasConstantBinaryOrUnaryOp()

static ConstantExpr * hasConstantBinaryOrUnaryOp ( Value V)
static

Definition at line 114 of file BreakConstantExpr.cpp.

115{
116 if (ConstantExpr * CE = SVFUtil::dyn_cast<ConstantExpr>(V))
117 {
118 if (Instruction::isBinaryOp(CE->getOpcode()) || Instruction::isUnaryOp(CE->getOpcode()))
119 {
120 return CE;
121 }
122 else
123 {
124 for (u32_t index = 0; index < CE->getNumOperands(); ++index)
125 {
126 if (hasConstantBinaryOrUnaryOp (CE->getOperand(index)))
127 return CE;
128 }
129 }
130 }
131
132 return nullptr;
133}
static ConstantExpr * hasConstantBinaryOrUnaryOp(Value *V)
unsigned u32_t
Definition CommandLine.h:18
int index
Definition cJSON.h:170
llvm::ConstantExpr ConstantExpr
Definition BasicTypes.h:120

◆ hasConstantExpr()

static ConstantExpr * hasConstantExpr ( Value V)
static

Definition at line 138 of file BreakConstantExpr.cpp.

139{
141 {
142 return gep;
143 }
145 {
146 return buop;
147 }
148 else
149 {
150 return nullptr;
151 }
152}
static ConstantExpr * hasConstantGEP(Value *V)

◆ hasConstantGEP()

static ConstantExpr * hasConstantGEP ( Value V)
static

Definition at line 89 of file BreakConstantExpr.cpp.

90{
91 if (ConstantExpr * CE = SVFUtil::dyn_cast<ConstantExpr>(V))
92 {
93 if (CE->getOpcode() == Instruction::GetElementPtr)
94 {
95 return CE;
96 }
97 else
98 {
99 for (u32_t index = 0; index < CE->getNumOperands(); ++index)
100 {
101 if (hasConstantGEP (CE->getOperand(index)))
102 return CE;
103 }
104 }
105 }
106
107 return nullptr;
108}

◆ STATISTIC() [1/2]

STATISTIC ( GEPChanges  ,
"Number of Converted GEP Constant Expressions"   
)

◆ STATISTIC() [2/2]

STATISTIC ( TotalChanges  ,
"Number of Converted Constant Expressions"   
)