Open Issues
|
Closed Issues
|
All Issues
|
Sign in
to create issues and add comments
Side by Side Diff: cgen/templates/default/delete_subscr
Issue 14757 :
INCA: Inline Caching meets Quickening in Python 3.3
Patch Set:
Use n/p to move between diff chunks;
N/P to move between comments.
Please Sign in to add in-line comments.
Jump to:
.gitignore
.hgignore
Include/Python.h
Include/code.h
Include/frameobject.h
Include/opcode.h
Objects/abstract.c
Objects/codeobject.c
Objects/object.c
Python/ceval.c
Python/opt/aux-impl.h
Python/opt/config.h
Python/opt/gen/debug-opcodes.h.gen
Python/opt/gen/inca-instr-decoding.h.gen
Python/opt/gen/instr-impl.h.gen
Python/opt/gen/opcode.h.gen
Python/opt/gen/rewrite-inca-fun.h.gen
Python/opt/gen/threaded-code.h.gen
Python/opt/interpreter-macro-defs.h
Python/opt/interpreter-macro-redefinitions.h
Python/opt/signature-defines.h
Python/opt/undef-macros.h
cgen/Lib/opcode.py
cgen/cgen.py
cgen/inca.py
cgen/incacalls.py
cgen/instructions.py
cgen/templates/FastCFunctionDerivative
cgen/templates/FastCVarArgsDerivative
cgen/templates/FastGeneratorDerivative
cgen/templates/FastPyFunctionDerivative
cgen/templates/FastPyFunctionDoCallDerivative
cgen/templates/FastPyMethodDerivative
cgen/templates/IncaBuildDerivative
cgen/templates/IncaBuildSliceDerivative
cgen/templates/IncaComparisonDerivative
cgen/templates/IncaDerivative
cgen/templates/IncaIteratorDerivative
cgen/templates/IncaStringConcatDerivative
cgen/templates/IncaSubscriptDerivative
cgen/templates/IncaUnpackDerivative
cgen/templates/base.impl
cgen/templates/copyright
cgen/templates/debug-opcodes.h.impl
cgen/templates/default/binary_add
cgen/templates/default/binary_and
cgen/templates/default/binary_floor_divide
cgen/templates/default/binary_lshift
cgen/templates/default/binary_modulo
cgen/templates/default/binary_multiply
cgen/templates/default/binary_or
cgen/templates/default/binary_power
cgen/templates/default/binary_rshift
cgen/templates/default/binary_subscr
cgen/templates/default/binary_subtract
cgen/templates/default/binary_true_divide
cgen/templates/default/binary_xor
cgen/templates/default/break_loop
cgen/templates/default/build_list
cgen/templates/default/build_map
cgen/templates/default/build_set
cgen/templates/default/build_slice
cgen/templates/default/build_tuple
cgen/templates/default/call_function
cgen/templates/default/call_function_var_kw
cgen/templates/default/compare_op
cgen/templates/default/continue_loop
cgen/templates/default/delete_attr
cgen/templates/default/delete_deref
cgen/templates/default/delete_fast
cgen/templates/default/delete_global
cgen/templates/default/delete_name
cgen/templates/default/delete_subscr
cgen/templates/default/dup_top
cgen/templates/default/dup_top_two
cgen/templates/default/end_finally
cgen/templates/default/extended_arg
cgen/templates/default/for_iter
cgen/templates/default/get_iter
cgen/templates/default/import_from
cgen/templates/default/import_name
cgen/templates/default/import_star
cgen/templates/default/inplace_add
cgen/templates/default/inplace_and
cgen/templates/default/inplace_floor_divide
cgen/templates/default/inplace_lshift
cgen/templates/default/inplace_modulo
cgen/templates/default/inplace_multiply
cgen/templates/default/inplace_or
cgen/templates/default/inplace_power
cgen/templates/default/inplace_rshift
cgen/templates/default/inplace_subtract
cgen/templates/default/inplace_true_divide
cgen/templates/default/inplace_xor
cgen/templates/default/jump_absolute
cgen/templates/default/jump_forward
cgen/templates/default/jump_if_false_or_pop
cgen/templates/default/jump_if_true_or_pop
cgen/templates/default/list_append
cgen/templates/default/load_attr
cgen/templates/default/load_build_class
cgen/templates/default/load_closure
cgen/templates/default/load_const
cgen/templates/default/load_deref
cgen/templates/default/load_fast
cgen/templates/default/load_global
cgen/templates/default/load_name
cgen/templates/default/make_function
cgen/templates/default/map_add
cgen/templates/default/pop_block
cgen/templates/default/pop_except
cgen/templates/default/pop_jump_if_false
cgen/templates/default/pop_jump_if_true
cgen/templates/default/pop_top
cgen/templates/default/print_expr
cgen/templates/default/raise_varargs
cgen/templates/default/return_value
cgen/templates/default/rot_four
cgen/templates/default/rot_three
cgen/templates/default/rot_two
cgen/templates/default/set_add
cgen/templates/default/setup_finally
cgen/templates/default/setup_with
cgen/templates/default/store_attr
cgen/templates/default/store_deref
cgen/templates/default/store_fast
cgen/templates/default/store_global
cgen/templates/default/store_locals
cgen/templates/default/store_map
cgen/templates/default/store_name
cgen/templates/default/store_subscr
cgen/templates/default/unary_invert
cgen/templates/default/unary_negative
cgen/templates/default/unary_not
cgen/templates/default/unary_positive
cgen/templates/default/unpack_ex
cgen/templates/default/unpack_sequence
cgen/templates/default/with_cleanup
cgen/templates/default/yield_from
cgen/templates/default/yield_value
cgen/templates/inca-instr-decoding.h.impl
cgen/templates/inlined/PyComplex_Type
cgen/templates/inlined/PyFloat_Type
cgen/templates/inlined/PyLong_Type
cgen/templates/inlined/PyRangeIter_Type
cgen/templates/instr-targets.h.impl
cgen/templates/opcode-defs.h.impl
cgen/templates/rewrite-fun.h.impl
cgen/typedefs.py
OLD NEW
(Empty) 1
2 TARGET(DELETE_SUBSCR)
3 w = TOP();
4 v = SECOND();
5 STACKADJ(-2);
6 /* del v[w] */
7 err = PyObject_DelItem(v, w);
8 Py_DECREF(v);
9 Py_DECREF(w);
10 if (err == 0) DISPATCH();
11 goto on_error;;
12
OLD NEW