Home
last modified time | relevance | path

Searched refs:GetSXTValue (Results 1 - 4 of 4) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_util/include/
H A Dmpl_int_val.h94 return sign ? GetSXTValue(size) : GetZXTValue(size); in GetExtValue()
105 int64 GetSXTValue(uint8 size = 0) const in GetSXTValue() function in maple::IntVal
150 return sign ? GetSXTValue() < rhs.GetSXTValue() : value < rhs.value; in operator <()
156 return sign ? GetSXTValue() > rhs.GetSXTValue() : value > rhs.value; in operator >()
255 return IntVal(sign ? GetSXTValue() >> bits : value >> bits, width, sign); in operator >>()
402 ret.value = ret.GetSXTValue() >> shift; in AShr()
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_ir/include/
H A Dmir_const.h181 int64 GetSXTValue(uint8 size = 0) const in GetSXTValue() function in maple::MIRIntConst
183 return value.GetSXTValue(size); in GetSXTValue()
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/mpl2mpl/src/
H A Dconstantfold.cpp149 pair.second->GetSXTValue(static_cast<uint8>(GetPrimTypeBitSize(resultType))) > 0) || in PairToExpr()
151 pair.second->GetSXTValue() == INT64_MIN) { in PairToExpr()
1317 uint64 result = opcode == OP_sext ? static_cast<uint64>(val.GetSXTValue(size)) : val.GetZXTValue(size); in FoldSignExtendMIRConst()
1629 } else if (op == OP_mul && lp.second.has_value() && *lp.second != 0 && lp.second->GetSXTValue() > -kMaxOffset) { in FoldBinary()
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/cg/aarch64/
H A Daarch64_cgfunc.cpp4080 offset = (addrExpr.GetOpCode() == OP_add) ? offset + intOfst->GetSXTValue() : offset - intOfst->GetSXTValue();

Completed in 13 milliseconds