OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:isConstant
(Results
1 - 25
of
125
) sorted by relevancy
1
2
3
4
5
/src/external/apache2/llvm/dist/llvm/lib/Analysis/
ValueLatticeUtils.cpp
28
if (GV->
isConstant
() || !GV->hasLocalLinkage() ||
/src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
ValueLattice.h
241
bool
isConstant
() const { return Tag == constant; }
257
assert(
isConstant
() && "Cannot get the constant of a non-constant!");
277
if (
isConstant
() && isa<ConstantInt>(getConstant())) {
306
if (
isConstant
()) {
399
if (RHS.
isConstant
())
413
if (
isConstant
()) {
414
if (RHS.
isConstant
() && getConstant() == RHS.getConstant())
457
if (
isConstant
() && Other.
isConstant
())
462
if ((isNotConstant() && Other.
isConstant
() &
[
all
...]
/src/external/apache2/llvm/dist/llvm/lib/CodeGen/
PseudoSourceValue.cpp
42
bool PseudoSourceValue::
isConstant
(const MachineFrameInfo *) const {
60
bool FixedStackPseudoSourceValue::
isConstant
(
86
bool CallEntryPseudoSourceValue::
isConstant
(const MachineFrameInfo *) const {
/src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
FixedAddressChecker.cpp
48
if (!RV.
isConstant
() || RV.isZeroConstant())
DeadStoresChecker.cpp
418
if (
isConstant
(E))
453
bool
isConstant
(const InitListExpr *Candidate) const {
457
[this](const Expr *Init) { return
isConstant
(Init); });
461
bool
isConstant
(const Expr *E) const {
468
return
isConstant
(ILE);
/src/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/
PPCTargetObjectFile.cpp
43
if (GVar && GVar->
isConstant
() &&
/src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
PseudoSourceValue.h
81
virtual bool
isConstant
(const MachineFrameInfo *) const;
105
bool
isConstant
(const MachineFrameInfo *MFI) const override;
121
bool
isConstant
(const MachineFrameInfo *) const override;
/src/external/apache2/llvm/dist/llvm/include/llvm/IR/
GlobalVariable.h
53
GlobalVariable(Type *Ty, bool
isConstant
, LinkageTypes Linkage,
59
GlobalVariable(Module &M, Type *Ty, bool
isConstant
, LinkageTypes Linkage,
153
bool
isConstant
() const { return isConstantGlobal; }
MDBuilder.h
163
bool
isConstant
= false);
191
uint64_t Offset, bool
IsConstant
= false);
/src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGCUDARuntime.h
70
bool
isConstant
() const { return Constant; }
CGBlocks.h
172
bool
isConstant
() const { return !isIndex(); }
192
assert(
isConstant
());
/src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/Utils/
AMDGPULDSUtils.cpp
95
if (GV.
isConstant
()) {
/src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
RelLookupTableConverter.cpp
35
!GV.
isConstant
() ||
78
if (!GlovalVarOp || !GlovalVarOp->
isConstant
())
100
M, IntArrayTy, LookupTable.
isConstant
(), LookupTable.getLinkage(),
SCCPSolver.cpp
48
// old ValueLatticeElement::
isConstant
() and is intended to be used in the
50
bool
isConstant
(const ValueLatticeElement &LV) {
51
return LV.
isConstant
() ||
60
return !LV.isUnknownOrUndef() && !
isConstant
(LV);
500
if (!
isConstant
(LV))
507
if (LV.
isConstant
())
677
// 3. If V <- x (op) y &&
isConstant
(x) &&
isConstant
(y) V = Constant
910
if (
isConstant
(V0State)) {
944
if ((V1State.
isConstant
() || V2State.isConstant()))
[
all
...]
CtorUtils.cpp
48
new GlobalVariable(CA->getType(), GCL->
isConstant
(), GCL->getLinkage(),
/src/external/apache2/llvm/dist/llvm/lib/Support/
KnownBits.cpp
172
if (RHS.
isConstant
() && RHS.getConstant().ult(BitWidth)) {
225
if (RHS.
isConstant
() && RHS.getConstant().ult(BitWidth)) {
278
if (RHS.
isConstant
() && RHS.getConstant().ult(BitWidth)) {
334
if (LHS.
isConstant
() && RHS.
isConstant
())
536
if (RHS.
isConstant
() && RHS.getConstant().isPowerOf2()) {
557
if (RHS.
isConstant
() && RHS.getConstant().isPowerOf2()) {
/src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
SCCP.cpp
85
// old ValueLatticeElement::
isConstant
() and is intended to be used in the
87
static bool
isConstant
(const ValueLatticeElement &LV) {
88
return LV.
isConstant
() ||
97
return !LV.isUnknownOrUndef() && !
isConstant
(LV);
114
ConstVals.push_back(
isConstant
(V)
125
isConstant
(IV) ? Solver.getConstant(IV) : UndefValue::get(V->getType());
616
if (
isConstant
(ReturnValue) || ReturnValue.isUnknownOrUndef())
/src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
SVals.cpp
200
bool SVal::
isConstant
() const {
204
bool SVal::
isConstant
(int I) const {
213
return
isConstant
(0);
/src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
ExtractGV.cpp
88
(!GV.
isConstant
() || !keepConstInit);
GlobalSplit.cpp
81
GV.
isConstant
(), GlobalValue::PrivateLinkage,
/src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
AMDGPUAliasAnalysis.cpp
136
if (GV->
isConstant
())
/src/external/apache2/llvm/dist/llvm/lib/Target/Mips/
MipsTargetObjectFile.cpp
134
if (EmbeddedData && GVA->
isConstant
())
/src/external/apache2/llvm/dist/llvm/include/llvm/Support/
KnownBits.h
50
bool
isConstant
() const {
58
assert(
isConstant
() && "Can only get value when all bits are known");
/src/external/apache2/llvm/dist/llvm/lib/Target/
TargetLoweringObjectFile.cpp
91
if (GV->
isConstant
())
247
if (GVar->
isConstant
()) {
/src/external/apache2/llvm/dist/llvm/lib/IR/
MDBuilder.cpp
178
bool
isConstant
) {
179
if (
isConstant
) {
234
uint64_t Offset, bool
IsConstant
) {
237
if (
IsConstant
) {
Completed in 26 milliseconds
1
2
3
4
5
Indexes created Tue Jun 16 00:25:01 UTC 2026