diff --git a/lldb/bindings/python/python-typemaps.swig b/lldb/bindings/python/python-typemaps.swig --- a/lldb/bindings/python/python-typemaps.swig +++ b/lldb/bindings/python/python-typemaps.swig @@ -59,25 +59,37 @@ $result = list.release(); } + %typemap(in) lldb::tid_t { - PythonObject obj = Retain($input); - lldb::tid_t value = unwrapOrSetPythonException(As(obj)); - if (PyErr_Occurred()) + if (PythonInteger::Check($input)) + { + PythonInteger py_int(PyRefType::Borrowed, $input); + $1 = static_cast(py_int.GetInteger()); + } + else + { + PyErr_SetString(PyExc_ValueError, "Expecting an integer"); return nullptr; - $1 = value; + } } %typemap(in) lldb::StateType { - PythonObject obj = Retain($input); - unsigned long long state_type_value = - unwrapOrSetPythonException(As(obj)); - if (PyErr_Occurred()) - return nullptr; - if (state_type_value > lldb::StateType::kLastStateType) { - PyErr_SetString(PyExc_ValueError, "Not a valid StateType value"); + if (PythonInteger::Check($input)) + { + PythonInteger py_int(PyRefType::Borrowed, $input); + int64_t state_type_value = py_int.GetInteger() ; + + if (state_type_value > lldb::StateType::kLastStateType) { + PyErr_SetString(PyExc_ValueError, "Not a valid StateType value"); + return nullptr; + } + $1 = static_cast(state_type_value); + } + else + { + PyErr_SetString(PyExc_ValueError, "Expecting an integer"); return nullptr; } - $1 = static_cast(state_type_value); } /* Typemap definitions to allow SWIG to properly handle char buffer. */ diff --git a/lldb/bindings/python/python-wrapper.swig b/lldb/bindings/python/python-wrapper.swig --- a/lldb/bindings/python/python-wrapper.swig +++ b/lldb/bindings/python/python-wrapper.swig @@ -444,7 +444,6 @@ if (PyErr_Occurred()) { PyErr_Print(); - PyErr_Clear(); return 0; } @@ -458,13 +457,11 @@ return 1; } - long long ret_val = unwrapOrSetPythonException(As(result)); - - if (PyErr_Occurred()) { - PyErr_Print(); - PyErr_Clear(); + PythonInteger int_result = result.AsType(); + if (!int_result.IsAllocated()) return 0; - } + + unsigned int ret_val = int_result.GetInteger(); return ret_val; } @@ -518,17 +515,26 @@ return 0; } - size_t ret_val; + PythonObject result; + if (arg_info.get().max_positional_args < 1) - ret_val = unwrapOrSetPythonException(As(pfunc.Call())); + result = pfunc(); else - ret_val = unwrapOrSetPythonException(As(pfunc.Call(PythonInteger(max)))); + result = pfunc(PythonInteger(max)); - if (PyErr_Occurred()) + if (!result.IsAllocated()) + return 0; + + PythonInteger int_result = result.AsType(); + if (!int_result.IsAllocated()) + return 0; + + size_t ret_val = int_result.GetInteger(); + + if (PyErr_Occurred()) //FIXME use Expected to catch python exceptions { PyErr_Print(); PyErr_Clear(); - return 0; } if (arg_info.get().max_positional_args < 1) @@ -582,15 +588,16 @@ if (!pfunc.IsAllocated()) return UINT32_MAX; - llvm::Expected result = pfunc.Call(PythonString(child_name)); + PythonObject result = pfunc(PythonString(child_name)); - long long retval = unwrapOrSetPythonException(As(std::move(result))); + if (!result.IsAllocated()) + return UINT32_MAX; - if (PyErr_Occurred()) { - PyErr_Clear(); // FIXME print this? do something else + PythonInteger int_result = result.AsType(); + if (!int_result.IsAllocated()) return UINT32_MAX; - } + int64_t retval = int_result.GetInteger(); if (retval >= 0) return (uint32_t)retval; diff --git a/lldb/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.h b/lldb/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.h --- a/lldb/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.h +++ b/lldb/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.h @@ -370,27 +370,6 @@ return r; } - llvm::Expected AsUnsignedLongLong() { - if (!m_py_obj) - return nullDeref(); - assert(!PyErr_Occurred()); - long long r = PyLong_AsUnsignedLongLong(m_py_obj); - if (PyErr_Occurred()) - return exception(); - return r; - } - - llvm::Expected AsModuloUnsignedLongLong() const { - // wraps on overflow, instead of raising an error. - if (!m_py_obj) - return nullDeref(); - assert(!PyErr_Occurred()); - unsigned long long r = PyLong_AsUnsignedLongLongMask(m_py_obj); - if (PyErr_Occurred()) - return exception(); - return r; - } - llvm::Expected IsInstance(const PythonObject &cls) { if (!m_py_obj || !cls.IsValid()) return nullDeref(); @@ -421,10 +400,6 @@ llvm::Expected As(llvm::Expected &&obj); template <> -llvm::Expected -As(llvm::Expected &&obj); - -template <> llvm::Expected As(llvm::Expected &&obj); @@ -516,6 +491,8 @@ static bool Check(PyObject *py_obj); static void Convert(PyRefType &type, PyObject *&py_obj); + int64_t GetInteger() const; + void SetInteger(int64_t value); StructuredData::IntegerSP CreateStructuredInteger() const; diff --git a/lldb/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.cpp b/lldb/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.cpp --- a/lldb/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.cpp +++ b/lldb/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.cpp @@ -44,15 +44,7 @@ Expected python::As(Expected &&obj) { if (!obj) return obj.takeError(); - return obj->AsLongLong(); -} - -template <> -Expected -python::As(Expected &&obj) { - if (!obj) - return obj.takeError(); - return obj->AsUnsignedLongLong(); + return obj.get().AsLongLong(); } template <> @@ -471,22 +463,32 @@ #endif } +int64_t PythonInteger::GetInteger() const { + if (m_py_obj) { + assert(PyLong_Check(m_py_obj) && + "PythonInteger::GetInteger has a PyObject that isn't a PyLong"); + + int overflow = 0; + int64_t result = PyLong_AsLongLongAndOverflow(m_py_obj, &overflow); + if (overflow != 0) { + // We got an integer that overflows, like 18446744072853913392L we can't + // use PyLong_AsLongLong() as it will return 0xffffffffffffffff. If we + // use the unsigned long long it will work as expected. + const uint64_t uval = PyLong_AsUnsignedLongLong(m_py_obj); + result = static_cast(uval); + } + return result; + } + return UINT64_MAX; +} + void PythonInteger::SetInteger(int64_t value) { *this = Take(PyLong_FromLongLong(value)); } StructuredData::IntegerSP PythonInteger::CreateStructuredInteger() const { StructuredData::IntegerSP result(new StructuredData::Integer); - // FIXME this is really not ideal. Errors are silently converted to 0 - // and overflows are silently wrapped. But we'd need larger changes - // to StructuredData to fix it, so that's how it is for now. - llvm::Expected value = AsModuloUnsignedLongLong(); - if (!value) { - llvm::consumeError(value.takeError()); - result->SetValue(0); - } else { - result->SetValue(value.get()); - } + result->SetValue(GetInteger()); return result; } diff --git a/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp b/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp --- a/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp +++ b/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp @@ -3150,15 +3150,20 @@ if (PyErr_Occurred()) PyErr_Clear(); - long long py_return = unwrapOrSetPythonException( - As(implementor.CallMethod(callee_name))); + // right now we know this function exists and is callable.. + PythonObject py_return( + PyRefType::Owned, + PyObject_CallMethod(implementor.get(), callee_name, nullptr)); // if it fails, print the error but otherwise go on if (PyErr_Occurred()) { PyErr_Print(); PyErr_Clear(); - } else { - result = py_return; + } + + if (py_return.IsAllocated() && PythonInteger::Check(py_return.get())) { + PythonInteger int_value(PyRefType::Borrowed, py_return.get()); + result = int_value.GetInteger(); } return result; diff --git a/lldb/unittests/ScriptInterpreter/Python/PythonDataObjectsTests.cpp b/lldb/unittests/ScriptInterpreter/Python/PythonDataObjectsTests.cpp --- a/lldb/unittests/ScriptInterpreter/Python/PythonDataObjectsTests.cpp +++ b/lldb/unittests/ScriptInterpreter/Python/PythonDataObjectsTests.cpp @@ -123,11 +123,13 @@ EXPECT_TRUE(major_version_field.IsAllocated()); EXPECT_TRUE(minor_version_field.IsAllocated()); - auto major_version_value = As(major_version_field); - auto minor_version_value = As(minor_version_field); + PythonInteger major_version_value = + major_version_field.AsType(); + PythonInteger minor_version_value = + minor_version_field.AsType(); - EXPECT_THAT_EXPECTED(major_version_value, llvm::HasValue(PY_MAJOR_VERSION)); - EXPECT_THAT_EXPECTED(minor_version_value, llvm::HasValue(PY_MINOR_VERSION)); + EXPECT_EQ(PY_MAJOR_VERSION, major_version_value.GetInteger()); + EXPECT_EQ(PY_MINOR_VERSION, minor_version_value.GetInteger()); } TEST_F(PythonDataObjectsTest, TestGlobalNameResolutionWithDot) { @@ -135,14 +137,16 @@ EXPECT_TRUE(sys_path.IsAllocated()); EXPECT_TRUE(PythonList::Check(sys_path.get())); - auto version_major = - As(m_main_module.ResolveName("sys.version_info.major")); - - auto version_minor = - As(m_main_module.ResolveName("sys.version_info.minor")); - - EXPECT_THAT_EXPECTED(version_major, llvm::HasValue(PY_MAJOR_VERSION)); - EXPECT_THAT_EXPECTED(version_minor, llvm::HasValue(PY_MINOR_VERSION)); + PythonInteger version_major = + m_main_module.ResolveName("sys.version_info.major") + .AsType(); + PythonInteger version_minor = + m_main_module.ResolveName("sys.version_info.minor") + .AsType(); + EXPECT_TRUE(version_major.IsAllocated()); + EXPECT_TRUE(version_minor.IsAllocated()); + EXPECT_EQ(PY_MAJOR_VERSION, version_major.GetInteger()); + EXPECT_EQ(PY_MINOR_VERSION, version_minor.GetInteger()); } TEST_F(PythonDataObjectsTest, TestDictionaryResolutionWithDot) { @@ -151,14 +155,14 @@ dict.SetItemForKey(PythonString("sys"), m_sys_module); // Now use that dictionary to resolve `sys.version_info.major` - auto version_major = As( - PythonObject::ResolveNameWithDictionary("sys.version_info.major", dict)); - - auto version_minor = As( - PythonObject::ResolveNameWithDictionary("sys.version_info.minor", dict)); - - EXPECT_THAT_EXPECTED(version_major, llvm::HasValue(PY_MAJOR_VERSION)); - EXPECT_THAT_EXPECTED(version_minor, llvm::HasValue(PY_MINOR_VERSION)); + PythonInteger version_major = + PythonObject::ResolveNameWithDictionary("sys.version_info.major", dict) + .AsType(); + PythonInteger version_minor = + PythonObject::ResolveNameWithDictionary("sys.version_info.minor", dict) + .AsType(); + EXPECT_EQ(PY_MAJOR_VERSION, version_major.GetInteger()); + EXPECT_EQ(PY_MINOR_VERSION, version_minor.GetInteger()); } TEST_F(PythonDataObjectsTest, TestPythonInteger) { @@ -172,8 +176,7 @@ PythonInteger python_int(PyRefType::Owned, py_int); EXPECT_EQ(PyObjectType::Integer, python_int.GetObjectType()); - auto python_int_value = As(python_int); - EXPECT_THAT_EXPECTED(python_int_value, llvm::HasValue(12)); + EXPECT_EQ(12, python_int.GetInteger()); #endif // Verify that `PythonInteger` works correctly when given a PyLong object. @@ -184,14 +187,12 @@ // Verify that you can reset the value and that it is reflected properly. python_long.SetInteger(40); - auto e = As(python_long); - EXPECT_THAT_EXPECTED(e, llvm::HasValue(40)); + EXPECT_EQ(40, python_long.GetInteger()); // Test that creating a `PythonInteger` object works correctly with the // int constructor. PythonInteger constructed_int(7); - auto value = As(constructed_int); - EXPECT_THAT_EXPECTED(value, llvm::HasValue(7)); + EXPECT_EQ(7, constructed_int.GetInteger()); } TEST_F(PythonDataObjectsTest, TestPythonBoolean) { @@ -338,8 +339,7 @@ PythonInteger chk_int(PyRefType::Borrowed, chk_value1.get()); PythonString chk_str(PyRefType::Borrowed, chk_value2.get()); - auto chkint = As(chk_value1); - ASSERT_THAT_EXPECTED(chkint, llvm::HasValue(long_value0)); + EXPECT_EQ(long_value0, chk_int.GetInteger()); EXPECT_EQ(string_value1, chk_str.GetString()); } @@ -367,8 +367,7 @@ PythonInteger chk_int(PyRefType::Borrowed, chk_value1.get()); PythonString chk_str(PyRefType::Borrowed, chk_value2.get()); - auto e = As(chk_int); - EXPECT_THAT_EXPECTED(e, llvm::HasValue(long_value0)); + EXPECT_EQ(long_value0, chk_int.GetInteger()); EXPECT_EQ(string_value1, chk_str.GetString()); } @@ -488,10 +487,10 @@ EXPECT_TRUE(PythonInteger::Check(chk_value1.get())); EXPECT_TRUE(PythonString::Check(chk_value2.get())); + PythonInteger chk_int(PyRefType::Borrowed, chk_value1.get()); PythonString chk_str(PyRefType::Borrowed, chk_value2.get()); - auto chkint = As(chk_value1); - EXPECT_THAT_EXPECTED(chkint, llvm::HasValue(value_0)); + EXPECT_EQ(value_0, chk_int.GetInteger()); EXPECT_EQ(value_1, chk_str.GetString()); } @@ -525,10 +524,10 @@ EXPECT_TRUE(PythonInteger::Check(chk_value1.get())); EXPECT_TRUE(PythonString::Check(chk_value2.get())); - auto chkint = As(chk_value1); + PythonInteger chk_int(PyRefType::Borrowed, chk_value1.get()); PythonString chk_str(PyRefType::Borrowed, chk_value2.get()); - EXPECT_THAT_EXPECTED(chkint, llvm::HasValue(value_0)); + EXPECT_EQ(value_0, chk_int.GetInteger()); EXPECT_EQ(value_1, chk_str.GetString()); } @@ -595,9 +594,10 @@ EXPECT_TRUE(py_int.HasAttribute("numerator")); EXPECT_FALSE(py_int.HasAttribute("this_should_not_exist")); - auto numerator_attr = As(py_int.GetAttributeValue("numerator")); - - EXPECT_THAT_EXPECTED(numerator_attr, llvm::HasValue(42)); + PythonInteger numerator_attr = + py_int.GetAttributeValue("numerator").AsType(); + EXPECT_TRUE(numerator_attr.IsAllocated()); + EXPECT_EQ(42, numerator_attr.GetInteger()); } TEST_F(PythonDataObjectsTest, TestExtractingUInt64ThroughStructuredData) {