/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/ |
H A D | ValueLattice.h | 96 if ((isConstant() || isNotConstant()) && !Other.isConstant() && in operator =() 143 bool isConstant() const { return Tag == constant; } in isConstant() function in llvm::ValueLatticeElement 149 assert(isConstant() && "Cannot get the constant of a non-constant!"); in getConstant() 165 if (isConstant() && isa<ConstantInt>(getConstant())) { in asConstantInteger() 177 if (isConstant() || isNotConstant()) in markOverdefined() 193 assert((!isConstant() || getConstant() == V) && in markConstant() 209 assert((!isConstant() || getConstant() != V) && in markNotConstant() 213 assert(isUndefined() || isConstant()); in markNotConstant() 253 if (isConstant()) { in mergeIn() [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/ |
H A D | SCCP.cpp | 112 bool isConstant() const { in isConstant() function in __anon25189::LatticeVal 119 assert(isConstant() && "Cannot get the constant of a non-constant!"); in getConstant() 160 if (isConstant()) in getConstantInt() 168 if (isConstant()) in getBlockAddress() 182 if (isConstant()) in toValueLattice() 775 // 3. If V <- x (op) y && isConstant(x) && isConstant(y) V = Constant 877 else if (OpSt.isConstant()) { in visitCastInst() 965 if (TVal.isConstant() && FVal.isConstant() in visitSelectInst() [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
H A D | PseudoSourceValue.cpp | 42 bool PseudoSourceValue::isConstant(const MachineFrameInfo *) const { in isConstant() function in PseudoSourceValue 60 bool FixedStackPseudoSourceValue::isConstant( in isConstant() function in FixedStackPseudoSourceValue 86 bool CallEntryPseudoSourceValue::isConstant(const MachineFrameInfo *) const { in isConstant() function in CallEntryPseudoSourceValue
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/ |
H A D | PseudoSourceValue.h | 82 virtual bool isConstant(const MachineFrameInfo *) const; 106 bool isConstant(const MachineFrameInfo *MFI) const override; 122 bool isConstant(const MachineFrameInfo *) const override;
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/ |
H A D | GlobalVariable.h | 54 GlobalVariable(Type *Ty, bool isConstant, LinkageTypes Linkage, 60 GlobalVariable(Module &M, Type *Ty, bool isConstant, 153 bool isConstant() const { return isConstantGlobal; } in isConstant() function in llvm::GlobalVariable
|
H A D | MDBuilder.h | 164 bool isConstant = false);
|
/third_party/skia/src/shaders/ |
H A D | SkColorShader.h | 27 bool isConstant() const override { return true; } 59 bool isConstant() const override { return true; }
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/ |
H A D | KnownBits.h | 49 bool isConstant() const { in isConstant() function 57 assert(isConstant() && "Can only get value when all bits are known"); in getConstant()
|
/third_party/mesa3d/src/amd/compiler/ |
H A D | aco_lower_to_hw_instr.cpp | 720 if (!identity[i].isConstant() || in emit_reduction() 723 assert((identity[i].isConstant() && !identity[i].isLiteral()) || in emit_reduction() 990 if (!src.op.isConstant() && can_increase) in split_copy() 999 if (src.op.isConstant()) { in split_copy() 1031 if (!src1.isConstant()) in create_bperm() 1035 else if (!src0.isConstant()) in create_bperm() 1225 } else if (op.isConstant()) { in do_copy() 1436 if (lo.isConstant() && hi.isConstant()) { in do_pack_2x16() 1454 (!hi.isConstant() || !Operan in do_pack_2x16() [all...] |
H A D | aco_validate.cpp | 271 instr->operands[i].isConstant(), in validate_ir() 338 op.isConstant(), in validate_ir() 350 op.isConstant(), in validate_ir() 361 op.isConstant(), in validate_ir() 375 if (op.isConstant() && !op.isLiteral()) in validate_ir() 388 check(op.isConstant() || op.regClass().type() <= RegType::sgpr, in validate_ir() 406 check(op.isConstant() || op.regClass().type() == RegType::sgpr, in validate_ir() 411 check((instr->operands[0].isTemp()) && instr->operands[1].isConstant(), in validate_ir() 481 check(instr->operands[1].isConstant(), "Index must be constant", instr.get()); in validate_ir() 483 check(instr->operands[3].isConstant(), "Sig in validate_ir() [all...] |
H A D | aco_assembler.cpp | 89 assert(instr->operands[1].isConstant()); in emit_instruction() 190 if (!instr->operands[1].isConstant()) { in emit_instruction() 201 if (instr->operands.size() >= 2 && instr->operands[1].isConstant() && in emit_instruction() 222 encoding |= instr->operands[1].isConstant() ? 1 << 17 : 0; /* IMM - immediate enable */ in emit_instruction() 247 offset = op_off1.isConstant() ? op_off1.constantValue() : op_off1.physReg(); in emit_instruction() 251 if (op_off1.isConstant()) { in emit_instruction() 263 assert(!op_off2.isConstant()); in emit_instruction()
|
H A D | aco_lower_phis.cpp | 167 if (cur.isConstant()) { in build_merge_code() 181 if (cur.isConstant()) { in build_merge_code() 203 if (phi->operands[i].isConstant()) in init_any_pred_defined()
|
H A D | aco_statistics.cpp | 238 instr->operands[1].isConstant() && (!soe || instr->operands.back().isConstant()); in get_wait_counter_info() 311 if (op.isConstant() || op.isUndefined()) in get_dependency_cost()
|
/third_party/skia/src/gpu/ |
H A D | GrProcessorAnalysis.cpp | 22 fOutputColorKnown = input.isConstant(&fLastKnownOutputColor); in GrColorFragmentProcessorAnalysis()
|
H A D | GrProcessorAnalysis.h | 46 bool isConstant(SkPMColor4f* color = nullptr) const { in isConstant() function in GrProcessorAnalysisColor
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/ |
H A D | ValueLatticeUtils.cpp | 28 if (GV->isConstant() || !GV->hasLocalLinkage() || in canTrackGlobalVariableInterprocedurally()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/PowerPC/ |
H A D | PPCTargetObjectFile.cpp | 43 if (GVar && GVar->isConstant() && GVar->getInitializer()->needsRelocation()) in SelectSectionForGlobal()
|
/third_party/skia/src/gpu/ops/ |
H A D | GrSimpleMeshDrawOpHelperWithStencil.cpp | 31 color.isConstant(geometryColor); in finalizeProcessors()
|
/third_party/skia/modules/skottie/src/animator/ |
H A D | Animator.cpp | 104 if (animator->isConstant()) { in bindImpl()
|
H A D | KeyframeAnimator.h | 66 bool isConstant() const { in isConstant() function in skottie::internal::KeyframeAnimator
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ |
H A D | TargetLoweringObjectFile.cpp | 78 if (GV->isConstant()) in isSuitableForBSS() 178 if (GVar->isConstant()) { in getKindForGlobal()
|
/third_party/skia/src/gpu/effects/ |
H A D | GrPorterDuffXferProcessor.cpp | 604 if (!color.isConstant(&blendConstantPM)) { 715 SkBlendMode::kSrcOver == fBlendMode && color.isConstant() && /*color.isOpaque() &&*/ 766 if (SkBlendMode::kSrcOver == mode && color.isConstant() && /*color.isOpaque() &&*/ 874 if (color.isConstant() && /*color.isOpaque() &&*/
|
/third_party/skia/src/core/ |
H A D | SkPaintPriv.cpp | 65 (p.getShader() && !as_SB(p.getShader())->isConstant()); in ShouldDither()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/ |
H A D | CtorUtils.cpp | 48 new GlobalVariable(CA->getType(), GCL->isConstant(), GCL->getLinkage(), in removeGlobalCtors()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/ |
H A D | AMDGPUAliasAnalysis.cpp | 102 if (GV->isConstant()) in pointsToConstantMemory()
|