Home
last modified time | relevance | path

Searched refs:PyFrameObject (Results 1 – 19 of 19) sorted by relevance

/external/python/cpython2/Include/
Dframeobject.h50 } PyFrameObject; typedef
61 PyAPI_FUNC(PyFrameObject *) PyFrame_New(PyThreadState *, PyCodeObject *,
69 PyAPI_FUNC(void) PyFrame_BlockSetup(PyFrameObject *, int, int, int);
70 PyAPI_FUNC(PyTryBlock *) PyFrame_BlockPop(PyFrameObject *);
74 PyAPI_FUNC(PyObject **) PyFrame_ExtendStack(PyFrameObject *, int, int);
78 PyAPI_FUNC(void) PyFrame_LocalsToFast(PyFrameObject *, int);
79 PyAPI_FUNC(void) PyFrame_FastToLocals(PyFrameObject *);
84 PyAPI_FUNC(int) PyFrame_GetLineNumber(PyFrameObject *);
/external/llvm/test/Transforms/LICM/
Dpr23608.ll6 %struct.PyFrameObject = type { i32 }
8 @a = common global %struct.PyFrameObject* null, align 8
16 %tmp = load %struct.PyFrameObject*, %struct.PyFrameObject** @a, align 8
17 …%_msld = load i64, i64* inttoptr (i64 and (i64 ptrtoint (%struct.PyFrameObject** @a to i64), i64 -…
18 …%tmp1 = load i32, i32* inttoptr (i64 add (i64 and (i64 ptrtoint (%struct.PyFrameObject** @a to i64…
19 …%f_iblock = getelementptr inbounds %struct.PyFrameObject, %struct.PyFrameObject* %tmp, i64 0, i32 0
/external/python/cpython2/Objects/
Dframeobject.c15 #define OFF(x) offsetof(PyFrameObject, x)
27 static PyObject * frame_get_ ## NAME(PyFrameObject *f) { \
36 static int frame_set_ ## NAME(PyFrameObject *f, PyObject *new) { \
56 frame_getlocals(PyFrameObject *f, void *closure) in WARN_GET_SET()
64 PyFrame_GetLineNumber(PyFrameObject *f) in PyFrame_GetLineNumber()
73 frame_getlineno(PyFrameObject *f, void *closure) in frame_getlineno()
94 frame_setlineno(PyFrameObject *f, PyObject* p_new_lineno) in frame_setlineno()
352 frame_gettrace(PyFrameObject *f, void *closure) in frame_gettrace()
365 frame_settrace(PyFrameObject *f, PyObject* v, void *closure) in frame_settrace()
379 frame_getrestricted(PyFrameObject *f, void *closure) in frame_getrestricted()
[all …]
Dgenobject.c48 PyFrameObject *f = gen->gi_frame; in gen_send_ex()
383 PyGen_New(PyFrameObject *f) in PyGen_New()
403 PyFrameObject *f = gen->gi_frame; in PyGen_NeedsFinalizing()
/external/python/cpython2/Doc/c-api/
Dreflection.rst26 .. c:function:: PyFrameObject* PyEval_GetFrame()
32 .. c:function:: int PyFrame_GetLineNumber(PyFrameObject *frame)
Dgen.rst34 .. c:function:: PyObject* PyGen_New(PyFrameObject *frame)
Dveryhigh.rst255 .. c:function:: PyObject* PyEval_EvalFrame(PyFrameObject *f)
261 .. c:function:: PyObject* PyEval_EvalFrameEx(PyFrameObject *f, int throwflag)
Dinit.rst973 .. c:type:: int (*Py_tracefunc)(PyObject *obj, PyFrameObject *frame, int what, PyObject *arg)
/external/python/cpython2/Python/
Dceval.c129 static int call_trace(Py_tracefunc, PyObject *, PyFrameObject *,
132 PyFrameObject *, int, PyObject *);
133 static void call_exc_trace(Py_tracefunc, PyObject *, PyFrameObject *);
135 PyFrameObject *, int *, int *, int *);
144 static int exec_statement(PyFrameObject *,
150 PyFrameObject *, unsigned char *);
681 PyEval_EvalFrame(PyFrameObject *f) { in PyEval_EvalFrame()
689 PyEval_EvalFrameEx(PyFrameObject *f, int throwflag) in PyEval_EvalFrameEx()
3351 register PyFrameObject *f; in PyEval_EvalCodeEx()
3702 PyFrameObject *frame = tstate->frame; in set_exc_info()
[all …]
Dtraceback.c84 newtracebackobject(PyTracebackObject *next, PyFrameObject *frame) in newtracebackobject()
106 PyTraceBack_Here(PyFrameObject *frame) in PyTraceBack_Here()
Dsysmodule.c305 PyFrameObject *frame, int what, PyObject *arg) in call_trampoline()
336 profile_trampoline(PyObject *self, PyFrameObject *frame, in profile_trampoline()
354 trace_trampoline(PyObject *self, PyFrameObject *frame, in trace_trampoline()
815 PyFrameObject *f = PyThreadState_GET()->frame; in sys_getframe()
D_warnings.c449 PyFrameObject *f = PyThreadState_GET()->frame; in setup_context()
/external/python/cpython2/Modules/_ctypes/
Dcallbacks.c155 PyFrameObject *py_frame = 0; in _ctypes_add_traceback()
/external/python/cpython2/Modules/
Dpyexpat.c273 trace_frame(PyThreadState *tstate, PyFrameObject *f, int code, PyObject *val) in trace_frame()
300 trace_frame_exc(PyThreadState *tstate, PyFrameObject *f) in trace_frame_exc()
340 PyFrameObject *f; in call_with_frame()
D_lsprof.c436 profiler_callback(PyObject *self, PyFrameObject *frame, int what, in profiler_callback()
D_hotshot.c863 tracer_callback(ProfilerObject *self, PyFrameObject *frame, int what, in tracer_callback()
/external/protobuf/python/google/protobuf/pyext/
Ddescriptor.cc98 PyFrameObject* frame = PyEval_GetFrame(); in _CalledFromGeneratedFile()
/external/python/cpython2/Doc/data/
Drefcounts.dat471 PyGen_New:PyFrameObject*:frame:0:
/external/python/cpython2/Misc/
DHISTORY569 - Removed 5 integers from C frame objects (PyFrameObject).
4851 - PyEval_GetFrame() is now declared to return a ``PyFrameObject *``