Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(4538)

Side by Side Diff: cgen/templates/default/build_tuple

Issue 14757: INCA: Inline Caching meets Quickening in Python 3.3
Patch Set: Created 1 year ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « cgen/templates/default/build_slice ('k') | cgen/templates/default/call_function » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1
2 TARGET(BUILD_TUPLE)
3 switch (oparg) {
4 case 2: PyEval_SetCurInstr(INCA_BUILD_TUPLE_TWO, 2); break;
5 case 3: PyEval_SetCurInstr(INCA_BUILD_TUPLE_THREE, 3); break;
6 } // switch
7 x = PyTuple_New(oparg);
8 if (x != NULL) {
9 for (; --oparg >= 0;) {
10 w = POP();
11 PyTuple_SET_ITEM(x, oparg, w);
12 }
13 PUSH(x);
14 DISPATCH();
15 }
16 goto on_error;;
OLDNEW
« no previous file with comments | « cgen/templates/default/build_slice ('k') | cgen/templates/default/call_function » ('j') | no next file with comments »

RSS Feeds Recent Issues | This issue
This is Rietveld cbc36f91f3f7