mirror of
https://github.com/RustPython/RustPython.git
synced 2026-06-09 22:49:57 +09:00
42 lines
1.3 KiB
Rust
42 lines
1.3 KiB
Rust
pub(crate) use decl::make_module;
|
|
|
|
#[pymodule(name = "dis")]
|
|
mod decl {
|
|
use crate::vm::{
|
|
builtins::{PyCode, PyDictRef, PyStrRef},
|
|
bytecode::CodeFlags,
|
|
compile, PyObjectRef, PyRef, PyResult, TryFromObject, VirtualMachine,
|
|
};
|
|
|
|
#[pyfunction]
|
|
fn dis(obj: PyObjectRef, vm: &VirtualMachine) -> PyResult<()> {
|
|
let co = if let Ok(co) = obj.clone().get_attr("__code__", vm) {
|
|
// Method or function:
|
|
PyRef::try_from_object(vm, co)?
|
|
} else if let Ok(co_str) = PyStrRef::try_from_object(vm, obj.clone()) {
|
|
// String:
|
|
vm.compile(co_str.as_str(), compile::Mode::Exec, "<dis>".to_owned())
|
|
.map_err(|err| vm.new_syntax_error(&err))?
|
|
} else {
|
|
PyRef::try_from_object(vm, obj)?
|
|
};
|
|
disassemble(co)
|
|
}
|
|
|
|
#[pyfunction]
|
|
fn disassemble(co: PyRef<PyCode>) -> PyResult<()> {
|
|
print!("{}", &co.code);
|
|
Ok(())
|
|
}
|
|
|
|
#[pyattr(name = "COMPILER_FLAG_NAMES")]
|
|
fn compiler_flag_names(vm: &VirtualMachine) -> PyDictRef {
|
|
let dict = vm.ctx.new_dict();
|
|
for (name, flag) in CodeFlags::NAME_MAPPING {
|
|
dict.set_item(vm.new_pyobj(flag.bits()), vm.ctx.new_str(*name).into(), vm)
|
|
.unwrap();
|
|
}
|
|
dict
|
|
}
|
|
}
|