OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:isConstant
(Results
1 - 23
of
23
) sorted by relevancy
/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
());
CGDecl.cpp
195
CGM.getLLVMLinkageVarDefinition(&D, /*
IsConstant
=*/false);
267
getModule(), LTy, Ty.
isConstant
(getContext()), Linkage, Init, Name,
357
CGM.getModule(), Init->getType(), OldGV->
isConstant
(),
1123
bool
isConstant
= true;
1135
getModule(), Ty,
isConstant
, llvm::GlobalValue::PrivateLinkage,
CGObjCMac.cpp
2040
bool
isConstant
= !CGM.getLangOpts().WritableStrings;
2042
auto *GV = new llvm::GlobalVariable(CGM.getModule(), C->getType(),
isConstant
,
2444
if (capture.
isConstant
()) continue;
2973
if (capture.
isConstant
()) continue;
4247
/*
isConstant
=*/true,
/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/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/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; }
ModuleSummaryIndex.h
884
bool
isConstant
() const { return VarFlags.Constant; }
/src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
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/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/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/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/llvm/lib/IR/
DebugInfoMetadata.cpp
1490
DIExpression::
isConstant
() const {
/src/external/apache2/llvm/dist/clang/utils/TableGen/
SveEmitter.cpp
105
bool
isConstant
() const { return Constant; }
/src/external/apache2/llvm/dist/llvm/lib/CodeGen/LiveDebugValues/
VarLocBasedImpl.cpp
594
bool
isConstant
(MachineLocKind Kind) const {
/src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
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
...]
/src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
InstCombineAddSub.cpp
141
bool
isConstant
() const { return Val == nullptr; }
412
if (
isConstant
())
449
if (!Opnd0.
isConstant
())
453
if (OpndNum == 2 && !Opnd1.
isConstant
())
709
if (Opnd->
isConstant
())
741
if (Opnd.
isConstant
()) {
/src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
AMDGPUInstructionSelector.cpp
2270
static bool
isConstant
(const MachineInstr &MI) {
2290
if (i == 2 &&
isConstant
(*OpDef)) {
/src/external/apache2/llvm/dist/clang/lib/AST/
Type.cpp
103
bool QualType::
isConstant
(QualType T, const ASTContext &Ctx) {
108
return AT->getElementType().
isConstant
(Ctx);
/src/external/apache2/llvm/dist/clang/include/clang/AST/
Type.h
803
bool
isConstant
(const ASTContext& Ctx) const {
804
return QualType::
isConstant
(*this, Ctx);
1293
static bool
isConstant
(QualType T, const ASTContext& Ctx);
/src/external/apache2/llvm/dist/clang/lib/Sema/
SemaChecking.cpp
7364
bool
isConstant
= false;
7368
isConstant
= AT->getElementType().
isConstant
(S.Context);
7370
isConstant
= T.
isConstant
(S.Context) &&
7371
PT->getPointeeType().
isConstant
(S.Context);
7375
isConstant
= T.
isConstant
(S.Context);
7378
if (
isConstant
) {
11834
bool
IsConstant
[
all
...]
/src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/
AArch64ISelLowering.cpp
9736
if (BVN->
isConstant
())
9766
bool
isConstant
= true;
9784
isConstant
= false;
9881
if (!
isConstant
) {
9930
!
isConstant
&& NumDifferentLanes >= 1 &&
9961
if (
isConstant
) {
9994
if (!
isConstant
&& !usesOnlyOneValue) {
12334
if (!BV->
isConstant
())
/src/external/apache2/llvm/dist/llvm/lib/Target/ARM/
ARMISelLowering.cpp
3255
*M, T, /*
isConstant
=*/true, GlobalVariable::InternalLinkage, C,
3594
!GVar->
isConstant
() || !GVar->hasGlobalUnnamedAddr() ||
3671
return V->
isConstant
();
7539
bool
isConstant
= true;
7552
isConstant
= false;
7581
if (!
isConstant
) {
7640
if (
isConstant
&& Val.getNode())
7648
if (
isConstant
)
7704
if (!
isConstant
&& !usesOnlyOneValue) {
Completed in 155 milliseconds
Indexes created Tue Feb 24 01:34:59 UTC 2026