Searched refs:isConstant (Results 1 - 25 of 79) sorted by relevance

1234

/freebsd-11.0-release/contrib/llvm/include/llvm/IR/
H A DGlobalVariable.h55 GlobalVariable(Type *Ty, bool isConstant, LinkageTypes Linkage,
61 GlobalVariable(Module &M, Type *Ty, bool isConstant,
138 bool isConstant() const { return isConstantGlobal; } function in class:llvm::GlobalVariable
H A DMDBuilder.h131 bool isConstant = false);
/freebsd-11.0-release/contrib/llvm/lib/CodeGen/
H A DPseudoSourceValue.cpp38 bool PseudoSourceValue::isConstant(const MachineFrameInfo *) const { function in class:PseudoSourceValue
56 bool FixedStackPseudoSourceValue::isConstant( function in class:FixedStackPseudoSourceValue
81 bool CallEntryPseudoSourceValue::isConstant(const MachineFrameInfo *) const { function in class:CallEntryPseudoSourceValue
/freebsd-11.0-release/contrib/llvm/include/llvm/CodeGen/
H A DPseudoSourceValue.h69 virtual bool isConstant(const MachineFrameInfo *) const;
93 bool isConstant(const MachineFrameInfo *MFI) const override;
109 bool isConstant(const MachineFrameInfo *) const override;
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/
H A DFixedAddressChecker.cpp50 if (!RV.isConstant() || RV.isZeroConstant())
H A DPointerArithChecker.cpp46 if (!LR || !RV.isConstant())
/freebsd-11.0-release/contrib/llvm/lib/Target/PowerPC/
H A DPPCTargetObjectFile.cpp45 if (GVar && GVar->isConstant() && GVar->getInitializer()->needsRelocation())
/freebsd-11.0-release/contrib/llvm/lib/Transforms/Scalar/
H A DSCCP.cpp89 bool isConstant() const { function in class:__anon3248::LatticeVal
95 assert(isConstant() && "Cannot get the constant of a non-constant!");
136 if (isConstant())
654 // 3. If V <- x (op) y && isConstant(x) && isConstant(y) V = Constant
760 else if (OpSt.isConstant()) {
848 if (TVal.isConstant() && FVal.isConstant() &&
867 if (V1State.isConstant() && V2State.isConstant()) {
[all...]
/freebsd-11.0-release/contrib/llvm/lib/Transforms/IPO/
H A DConstantMerge.cpp132 if (!GV->isConstant() || !GV->hasDefinitiveInitializer() ||
166 if (!GV->isConstant() || !GV->hasDefinitiveInitializer() ||
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/
H A DSVals.cpp174 bool SVal::isConstant() const { function in class:SVal
178 bool SVal::isConstant(int I) const { function in class:SVal
187 return isConstant(0);
/freebsd-11.0-release/contrib/llvm/lib/Analysis/
H A DLazyValueInfo.cpp115 bool isConstant() const { return Tag == constant; } function in class:__anon2397::LVILatticeVal
121 assert(isConstant() && "Cannot get the constant of a non-constant!");
152 assert((!isConstant() || getConstant() == V) &&
168 assert((!isConstant() || getConstant() != V) &&
172 assert(isUndefined() || isConstant());
211 if (isConstant()) {
212 if (RHS.isConstant()) {
242 if (RHS.isConstant()) {
1212 if (Result.isConstant())
1231 if (Result.isConstant())
[all...]
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGBlocks.h168 bool isConstant() const { return !isIndex(); } function in class:clang::CodeGen::CGBlockInfo::Capture
188 assert(isConstant());
H A DCGBlocks.cpp590 if (capture.isConstant()) continue;
766 if (capture.isConstant()) continue;
1005 if (capture.isConstant()) return LocalDeclMap.find(variable)->second;
1225 if (!capture.isConstant()) continue;
1266 if (capture.isConstant()) {
1377 if (capture.isConstant()) continue;
1550 if (capture.isConstant()) continue;
/freebsd-11.0-release/contrib/llvm/lib/IR/
H A DMDBuilder.cpp111 bool isConstant) {
112 if (isConstant) {
110 createTBAANode(StringRef Name, MDNode *Parent, bool isConstant) argument
/freebsd-11.0-release/contrib/llvm/lib/Target/
H A DTargetLoweringObjectFile.cpp61 if (GV->isConstant())
168 if (GVar->isConstant()) {
/freebsd-11.0-release/contrib/llvm/lib/Transforms/Utils/
H A DCtorUtils.cpp51 new GlobalVariable(CA->getType(), GCL->isConstant(), GCL->getLinkage(),
H A DCloneModule.cpp57 I->isConstant(), I->getLinkage(),
/freebsd-11.0-release/contrib/llvm/lib/Transforms/InstCombine/
H A DInstCombineVectorOps.cpp26 /// vector operation. isConstant indicates whether we're extracting one known
28 static bool cheapToScalarize(Value *V, bool isConstant) { argument
30 if (isConstant) return true;
46 if (I->getOpcode() == Instruction::InsertElement && isConstant &&
53 (cheapToScalarize(BO->getOperand(0), isConstant) ||
54 cheapToScalarize(BO->getOperand(1), isConstant)))
58 (cheapToScalarize(CI->getOperand(0), isConstant) ||
59 cheapToScalarize(CI->getOperand(1), isConstant)))
H A DInstCombineAddSub.cpp123 bool isConstant() const { return Val == nullptr; } function in class:__anon3142::FAddend
418 if (isConstant())
539 if (!Opnd0.isConstant())
543 if (OpndNum == 2 && !Opnd1.isConstant())
814 if (Opnd->isConstant())
843 if (Opnd.isConstant()) {
/freebsd-11.0-release/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DSVals.h133 bool isConstant() const;
135 bool isConstant(int I) const;
/freebsd-11.0-release/contrib/llvm/include/llvm/Analysis/
H A DObjCARCAnalysisUtils.h214 if (GV->isConstant())
/freebsd-11.0-release/contrib/llvm/lib/ExecutionEngine/Orc/
H A DIndirectionUtils.cpp157 Dst, GV.getType()->getElementType(), GV.isConstant(),
/freebsd-11.0-release/contrib/llvm/lib/Target/XCore/
H A DXCoreLowerThreadLocal.cpp198 new GlobalVariable(*M, NewType, GV->isConstant(), GV->getLinkage(),
/freebsd-11.0-release/contrib/llvm/lib/Object/
H A DIRObjectFile.cpp225 if (GVar->isConstant())
/freebsd-11.0-release/contrib/llvm/lib/Linker/
H A DLinkModules.cpp279 if (GVar && GVar->isConstant() && GVar->hasUnnamedAddr())
645 (!DGVar->isConstant() || !SGVar->isConstant())) {

Completed in 313 milliseconds

1234