Home
last modified time | relevance | path

Searched refs:getConstantInt (Results 1 – 19 of 19) sorted by relevance

/third_party/flutter/skia/src/sksl/ir/
DSkSLConstructor.h129 return fArguments[0]->getConstantInt(); in getVecComponent()
140 return arg.get()->getConstantInt(); in getVecComponent()
DSkSLIntLiteral.h54 int64_t getConstantInt() const override { in getConstantInt() function
DSkSLExpression.h77 virtual int64_t getConstantInt() const { in getConstantInt() function
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/
DSCCP.cpp159 ConstantInt *getConstantInt() const { in getConstantInt() function in __anon4cc15ec80111::LatticeVal
677 ConstantInt *CI = BCValue.getConstantInt(); in getFeasibleSuccessors()
703 ConstantInt *CI = SCValue.getConstantInt(); in getFeasibleSuccessors()
952 if (ConstantInt *CondCB = CondValue.getConstantInt()) { in visitSelectInst()
1052 if (ConstantInt *CI = NonOverdefVal->getConstantInt()) in visitBinaryOperator()
1594 if (auto *ShiftAmt = Op1LV.getConstantInt()) in ResolvedUndefsIn()
1611 if (auto *ShiftAmt = Op1LV.getConstantInt()) in ResolvedUndefsIn()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/AsmPrinter/
DDebugLocEntry.h95 const ConstantInt *getConstantInt() const { return Constant.CIP; } in getConstantInt() function
DDwarfCompileUnit.cpp644 addConstantValue(*VariableDie, DVal->getConstantInt(), DV.getType()); in constructVariableDIEImpl()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/
DValueLattice.h284 ConstantInt *getConstantInt() const { in getConstantInt() function
/third_party/flutter/skia/src/sksl/
DSkSLIRGenerator.h150 void getConstantInt(const Expression& value, int64_t* out);
DSkSLIRGenerator.cpp540 this->getConstantInt(*caseValue, &v); in convertSwitch()
1014 void IRGenerator::getConstantInt(const Expression& value, int64_t* out) { in getConstantInt() function in SkSL::IRGenerator
1023 this->getConstantInt(*var.fInitialValue, out); in getConstantInt()
1053 this->getConstantInt(*value, &currentValue); in convertEnum()
DSkSLByteCodeGenerator.cpp457 int64_t index = i.fIndex->getConstantInt(); in getLocation()
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/
DIceTargetLoweringX8632.cpp1346 Func, IceType_void, esp, Ctx->getConstantInt(IceType_i32, OutArgsSize)); in lowerAlloca()
1512 _shl(T, Ctx->getConstantInt(Ty, Count2)); in optimizeScalarMul()
2178 _sar(T, Ctx->getConstantInt(Ty, TypeWidth - 1)); in lowerArithmetic()
2179 _shr(T, Ctx->getConstantInt(Ty, TypeWidth - LogDiv)); in lowerArithmetic()
2181 _sar(T, Ctx->getConstantInt(Ty, LogDiv)); in lowerArithmetic()
2274 _sar(T, Ctx->getConstantInt(Ty, TypeWidth - 1)); in lowerArithmetic()
2275 _shr(T, Ctx->getConstantInt(Ty, TypeWidth - LogDiv)); in lowerArithmetic()
2277 _and(T, Ctx->getConstantInt(Ty, -(1 << LogDiv))); in lowerArithmetic()
3133 Constant *Default = Ctx->getConstantInt(Dest->getType(), IntDefault); in lowerFcmpAndConsumer()
3141 Constant *NonDefault = Ctx->getConstantInt(Dest->getType(), !IntDefault); in lowerFcmpAndConsumer()
[all …]
DIceTargetLoweringX8664.cpp1262 Func, IceType_void, esp, Ctx->getConstantInt(IceType_i32, OutArgsSize)); in lowerAlloca()
1435 _shl(T, Ctx->getConstantInt(Ty, Count2)); in optimizeScalarMul()
1982 _sar(T, Ctx->getConstantInt(Ty, TypeWidth - 1)); in lowerArithmetic()
1983 _shr(T, Ctx->getConstantInt(Ty, TypeWidth - LogDiv)); in lowerArithmetic()
1985 _sar(T, Ctx->getConstantInt(Ty, LogDiv)); in lowerArithmetic()
2086 _sar(T, Ctx->getConstantInt(Ty, TypeWidth - 1)); in lowerArithmetic()
2087 _shr(T, Ctx->getConstantInt(Ty, TypeWidth - LogDiv)); in lowerArithmetic()
2089 _and(T, Ctx->getConstantInt(Ty, -(1 << LogDiv))); in lowerArithmetic()
2836 Constant *Default = Ctx->getConstantInt(Dest->getType(), IntDefault); in lowerFcmpAndConsumer()
2844 Constant *NonDefault = Ctx->getConstantInt(Dest->getType(), !IntDefault); in lowerFcmpAndConsumer()
[all …]
DWasmTranslator.cpp488 Ctx->getConstantInt(DestTy, BitCount - 1))); in Binop()
494 Ctx->getConstantInt(DestTy, BitCount), Masked)); in Binop()
514 Ctx->getConstantInt(DestTy, BitCount - 1))); in Binop()
520 Ctx->getConstantInt(DestTy, BitCount), Masked)); in Binop()
DIceGlobalContext.h198 Constant *getConstantInt(Type Ty, int64_t Value);
DIceGlobalContext.cpp672 Constant *GlobalContext::getConstantInt(Type Ty, int64_t Value) { in getConstantInt() function in Ice::GlobalContext
DIceConverter.cpp151 return Ctx->getConstantInt(Ty, CI->getSExtValue()); in convertConstant()
DPNaClTranslator.cpp2855 if (Ice::Constant *C = getContext()->getConstantInt( in ProcessRecord()
DIceTargetLoweringARM32.cpp3772 Operand *_m1 = Ctx->getConstantInt(DestTy, -1); in lowerCast()
/third_party/skia/third_party/externals/swiftshader/src/Reactor/
DSubzeroReactor.cpp1365 return createXor(v, V(::context->getConstantInt(v->getType(), -1))); in createNot()