Home
last modified time | relevance | path

Searched full:py (Results 1 – 25 of 11654) sorted by relevance

12345678910>>...467

/llvm-project/lldb/docs/
H A Dpython_api_enums.rst10 .. py:currentmodule:: lldb
18 .. py:data:: LLDB_REGNUM_GENERIC_PC
22 .. py:data:: LLDB_REGNUM_GENERIC_SP
25 .. py:data:: LLDB_REGNUM_GENERIC_FP
29 .. py:data:: LLDB_REGNUM_GENERIC_RA
33 .. py:data:: LLDB_REGNUM_GENERIC_FLAGS
37 .. py:data:: LLDB_REGNUM_GENERIC_ARG1
41 .. py:data:: LLDB_REGNUM_GENERIC_ARG2
45 .. py:data:: LLDB_REGNUM_GENERIC_ARG3
49 .. py:data:: LLDB_REGNUM_GENERIC_ARG4
[all …]
/llvm-project/mlir/include/mlir/Bindings/Python/
H A DPybindAdaptors.h33 namespace py = pybind11;
34 using namespace py::literals;
50 static py::object mlirApiObjectToCapsule(py::handle apiObject) { in mlirApiObjectToCapsule()
52 return py::reinterpret_borrow<py::object>(apiObject); in mlirApiObjectToCapsule()
53 if (!py::hasattr(apiObject, MLIR_PYTHON_CAPI_PTR_ATTR)) { in mlirApiObjectToCapsule()
54 auto repr = py::repr(apiObject).cast<std::string>(); in mlirApiObjectToCapsule()
55 throw py::type_error( in mlirApiObjectToCapsule()
61 // Note: Currently all of the following support cast from py
32 namespace py = pybind11; global() variable
[all...]
/llvm-project/mlir/lib/Bindings/Python/
H A DIRCore.cpp2733 // __init__.py will subclass it with site-specific functionality and set a in populateIRCore()
H A DIRInterfaces.cpp
H A DIRAttributes.cpp
H A DIRTypes.cpp
H A DIRAffine.cpp
H A DDialectQuant.cpp
H A DDialectSparseTensor.cpp
H A DMainModule.cpp
H A DExecutionEngineModule.cpp
H A DDialectLLVM.cpp
H A DDialectTransform.cpp
/llvm-project/llvm/utils/lit/tests/
H A Dshtest-not.py26 # CHECK: ! [[PYTHON:.*]] fail.py
27 # CHECK: # executed command: ! [[PYTHON_BARE:.*]] fail.py
28 # CHECK: ! ! [[PYTHON]] pass.py
29 # CHECK: # executed command: ! ! [[PYTHON_BARE]] pass.py
30 # CHECK: ! ! ! [[PYTHON]] fail.py
31 # CHECK: # executed command: ! ! ! [[PYTHON_BARE]] fail.py
32 # CHECK: ! ! ! ! [[PYTHON]] pass.py
33 # CHECK: # executed command: ! ! ! ! [[PYTHON_BARE]] pass.py
35 # CHECK: ! [[PYTHON]] pass.py
36 # CHECK: # executed command: ! [[PYTHON_BARE]] pass.py
[all …]
/llvm-project/llvm/utils/gn/secondary/llvm/utils/llvm-lit/
H A DBUILD.gn16 # llvm-lit needs suffix.py for multiprocess to find a main module.
17 output = "${output}.py"
20 # lit's lit/llvm/config.py shells out to llvm-config.
42 "//bolt/test/lit.cfg.py",
46 "//bolt/test/Unit/lit.cfg.py",
50 "//clang-tools-extra/test/lit.cfg.py",
54 "//clang-tools-extra/test/Unit/lit.cfg.py",
58 "//clang-tools-extra/clangd/test/lit.cfg.py",
62 "//clang-tools-extra/clangd/unittests/lit.cfg.py",
66 "//clang/test/lit.cfg.py",
[all...]
/llvm-project/clang/tools/scan-build-py/
H A DCMakeLists.txt13 "__init__.py"
14 "analyze.py"
15 "arguments.py"
16 "clang.py"
17 "compilation.py"
18 "intercept.py"
19 "report.py"
20 "shell.py")
30 "__init__.py"
36 # Need to rename scan-build to scan-build-py t
[all...]
/llvm-project/mlir/python/
H A DCMakeLists.txt21 _mlir_libs/__init__.py
22 ir.py
23 passmanager.py
24 rewrite.py
25 dialects/_ods_common.py
37 extras/types.py
38 extras/meta.py
45 execution_engine.py
48 runtime/*.py
65 dialects/affine.py
[all...]
/llvm-project/mlir/test/python/lib/
H A DPythonTestModule.cpp
/llvm-project/llvm/utils/lit/tests/Inputs/shtest-not/
H A Dnot-calls-external.txt7 # RUN: not %{python} fail.py
8 # RUN: not not %{python} pass.py
9 # RUN: not not not %{python} fail.py
10 # RUN: not not not not %{python} pass.py
15 # RUN: not not --crash %{python} pass.py
16 # RUN: not not --crash %{python} fail.py
17 # RUN: not not --crash not %{python} pass.py
18 # RUN: not not --crash not %{python} fail.py
26 # RUN: env not %{python} fail.py | FileCheck -check-prefixes=FOO-NO,BAR-NO %s
27 # RUN: not env %{python} fail.py | FileCheck -check-prefixes=FOO-NO,BAR-NO %s
[all …]
/llvm-project/lldb/bindings/python/
H A DCMakeLists.txt10 OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/lldb.py
27 ${CMAKE_CURRENT_BINARY_DIR}/lldb.py
49 "${LLDB_SOURCE_DIR}/bindings/python/createPythonInit.py"
64 DEPENDS ${lldb_python_bindings_dir}/lldb.py
69 "${lldb_python_bindings_dir}/lldb.py"
70 "${lldb_python_target_dir}/__init__.py")
74 "${LLDB_SOURCE_DIR}/source/Interpreter/embedded_interpreter.py"
82 FILES "${LLDB_SOURCE_DIR}/examples/synthetic/gnu_libstdcpp.py"
83 "${LLDB_SOURCE_DIR}/examples/synthetic/libcxx.py")
89 FILES "${LLDB_SOURCE_DIR}/examples/summaries/cocoa/cache.py"
[all …]
H A Dpython.swig15 * :py:class:`SBTarget`: Represents the target program running under the debugger.
16 * :py:class:`SBProcess`: Represents the process associated with the target program.
17 * :py:class:`SBThread`: Represents a thread of execution. :py:class:`SBProcess` contains SBThreads.
18 * :py:class:`SBFrame`: Represents one of the stack frames associated with a thread. :py:class:`SBTh…
20 * :py:class:`SBSymbolContext`: A container that stores various debugger related info.
21 * :py:class:`SBValue`: Represents the value of a variable, a register, or an expression.
22 * :py:class:`SBModule`: Represents an executable image and its associated object and symbol
23 files. :py:class:`SBTarget` contains SBModule.
24 * :py:class:`SBBreakpoint`: Represents a logical breakpoint and its associated settings.
25 :py:class:`SBTarget` contains SBBreakpoints.
[all …]
/llvm-project/polly/lib/External/isl/imath/tests/gmp-compat-test/
H A DMakefile4 runtest: imath_test.so gmp_test.so wrappers.py random.tests
7 gmp_test.c: gmp_custom_test.c genctest.py gmpapi.py
8 ./genctest.py gmp > $@
10 imath_test.c: imath_custom_test.c genctest.py gmpapi.py
11 ./genctest.py imath > $@
19 wrappers.py: genpytest.py gmpapi.py
20 ./genpytest.py > $@
22 random.tests: gendata.py
23 ./gendata.py > $@
26 rm -f a.out *.so *.o gmp_test.c imath_test.c wrappers.py *.pyc
/llvm-project/utils/bazel/llvm-project-overlay/mlir/python/
H A DBUILD.bazel24 "mlir/dialects/_ods_common.py",
31 "mlir/execution_engine.py",
45 "mlir/ir.py",
52 "mlir/extras/*.py",
67 "mlir/_mlir_libs/__init__.py",
74 "mlir/passmanager.py",
88 "mlir/rewrite.py",
95 "mlir/runtime/*.py",
123 "mlir/dialects/_affine_ops_gen.py",
136 "mlir/dialects/affine.py",
[all...]
/llvm-project/llvm/test/Transforms/SCCP/
H A Ddivrem.ll1 ; NOTE: Assertions have been autogenerated by utils/update_test_checks.py
7 ; CHECK-NEXT: [[PY:%.*]] = lshr i8 [[Y:%.*]], 1
8 ; CHECK-NEXT: [[R:%.*]] = udiv i8 [[PX]], [[PY]]
12 %py = lshr i8 %y, 1
13 %r = sdiv i8 %px, %py
19 ; CHECK-NEXT: [[PY:%.*]] = zext i7 [[Y:%.*]] to i8
20 ; CHECK-NEXT: [[R:%.*]] = udiv i8 42, [[PY]]
23 %py = zext i7 %y to i8
24 %r = sdiv i8 42, %py
45 ; CHECK-NEXT: [[PY:%.*]] = lshr i8 [[Y:%.*]], 1
[all …]
/llvm-project/lldb/packages/Python/lldbsuite/test/
H A Dbench.py

12345678910>>...467