Home
last modified time | relevance | path

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

/external/skqp/src/sksl/ir/
DSkSLIntLiteral.h54 int64_t getConstantInt() const override { in getConstantInt() function
DSkSLExpression.h74 virtual int64_t getConstantInt() const { in getConstantInt() function
DSkSLConstructor.h160 return this->getVecComponent(index).getConstantInt(); in getIVecComponent()
/external/llvm/lib/Transforms/Scalar/
DSCCP.cpp137 ConstantInt *getConstantInt() const { in getConstantInt() function in __anon8e75af050111::LatticeVal
551 ConstantInt *CI = BCValue.getConstantInt(); in getFeasibleSuccessors()
577 ConstantInt *CI = SCValue.getConstantInt(); in getFeasibleSuccessors()
623 ConstantInt *CI = BCValue.getConstantInt(); in isEdgeFeasible()
640 ConstantInt *CI = SCValue.getConstantInt(); in isEdgeFeasible()
851 if (ConstantInt *CondCB = CondValue.getConstantInt()) { in visitSelectInst()
926 if (ConstantInt *CI = NonOverdefVal->getConstantInt()) in visitBinaryOperator()
1383 if (auto *ShiftAmt = Op1LV.getConstantInt()) in ResolvedUndefsIn()
1400 if (auto *ShiftAmt = Op1LV.getConstantInt()) in ResolvedUndefsIn()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/
DSCCP.cpp159 ConstantInt *getConstantInt() const { in getConstantInt() function in __anon0082af670111::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()
/external/llvm/lib/CodeGen/AsmPrinter/
DDebugLocEntry.h73 const ConstantInt *getConstantInt() const { return Constant.CIP; } in getConstantInt() function
/external/llvm-project/llvm/lib/CodeGen/AsmPrinter/
DDebugLocEntry.h95 const ConstantInt *getConstantInt() const { return Constant.CIP; } in getConstantInt() function
DDwarfCompileUnit.cpp717 addConstantValue(*VariableDie, DVal->getConstantInt(), DV.getType()); in constructVariableDIEImpl()
/external/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()
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/
DValueLattice.h284 ConstantInt *getConstantInt() const { in getConstantInt() function
/external/llvm-project/mlir/lib/Dialect/SPIRV/Serialization/
DDeserializer.cpp210 IntegerAttr getConstantInt(uint32_t id);
1115 IntegerAttr Deserializer::getConstantInt(uint32_t id) { in getConstantInt() function in Deserializer
1365 auto scope = spirv::symbolizeScope(getConstantInt(operands[2]).getInt()); in processCooperativeMatrixType()
1372 unsigned rows = getConstantInt(operands[3]).getInt(); in processCooperativeMatrixType()
1373 unsigned columns = getConstantInt(operands[4]).getInt(); in processCooperativeMatrixType()
2627 auto argAttr = getConstantInt(operand); in processOp()
2693 auto argAttr = getConstantInt(operand); in processOp()
/external/skqp/src/sksl/
DSkSLIRGenerator.h172 void getConstantInt(const Expression& value, int64_t* out);
DSkSLIRGenerator.cpp493 this->getConstantInt(*caseValue, &v); in convertSwitch()
916 void IRGenerator::getConstantInt(const Expression& value, int64_t* out) { in getConstantInt() function in SkSL::IRGenerator
925 this->getConstantInt(*var.fInitialValue, out); in getConstantInt()
951 this->getConstantInt(*value, &currentValue); in convertEnum()
/external/swiftshader/third_party/subzero/src/
DIceTargetLoweringX86BaseImpl.h1577 Func, IceType_void, esp, Ctx->getConstantInt(IceType_i32, OutArgsSize));
1755 _shl(T, Ctx->getConstantInt(Ty, Count2));
2429 _sar(T, Ctx->getConstantInt(Ty, TypeWidth - 1));
2430 _shr(T, Ctx->getConstantInt(Ty, TypeWidth - LogDiv));
2432 _sar(T, Ctx->getConstantInt(Ty, LogDiv));
2533 _sar(T, Ctx->getConstantInt(Ty, TypeWidth - 1));
2534 _shr(T, Ctx->getConstantInt(Ty, TypeWidth - LogDiv));
2536 _and(T, Ctx->getConstantInt(Ty, -(1 << LogDiv)));
3463 Constant *Default = Ctx->getConstantInt(Dest->getType(), IntDefault);
3471 Constant *NonDefault = Ctx->getConstantInt(Dest->getType(), !IntDefault);
[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.cpp3957 Operand *_m1 = Ctx->getConstantInt(DestTy, -1); in lowerCast()
/external/llvm-project/llvm/lib/Transforms/Scalar/
DSCCP.cpp367 ConstantInt *getConstantInt(const ValueLatticeElement &IV) const { in getConstantInt() function in __anonb8b04cf30111::SCCPSolver
627 ConstantInt *CI = getConstantInt(BCValue); in getFeasibleSuccessors()
653 if (ConstantInt *CI = getConstantInt(SCValue)) { in getFeasibleSuccessors()
942 if (ConstantInt *CondCB = getConstantInt(CondValue)) { in visitSelectInst()
/external/swiftshader/src/Reactor/
DSubzeroReactor.cpp1366 return createXor(v, V(::context->getConstantInt(v->getType(), -1))); in createNot()