forked from Nuitka/Nuitka
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Optimization: Added more helpers for code generation
* This adds "//" (floor division) and "/" (true division), but not yet classical division (Python2). * More helpers are now created in the templates, even if they are rather specific, they can still share the common part, e.g. argument conversion to double or long, and fallback to the long slot. * This also adds the template names to the generated files, which is something we mean to do. * Also gives an error when a missing operation is encountered.
- Loading branch information
Showing
20 changed files
with
5,886 additions
and
64 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
81 changes: 81 additions & 0 deletions
81
nuitka/build/include/nuitka/helper/operations_binary_floordiv.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
// Copyright 2019, Kay Hayen, mailto:[email protected] | ||
// | ||
// Part of "Nuitka", an optimizing Python compiler that is compatible and | ||
// integrates with CPython, but also works on its own. | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
// | ||
/* WARNING, this code is GENERATED. Modify the template HelperOperationBinary.c.j2 instead! */ | ||
/* C helpers for type specialized "//" (FLOORDIV) operations */ | ||
|
||
#if PYTHON_VERSION < 300 | ||
/* Code referring to "OBJECT" corresponds to any Python object and "INT" to Python2 'int'. */ | ||
extern PyObject *BINARY_OPERATION_FLOORDIV_OBJECT_INT(PyObject *operand1, PyObject *operand2); | ||
#endif | ||
|
||
#if PYTHON_VERSION < 300 | ||
/* Code referring to "INT" corresponds to Python2 'int' and "OBJECT" to any Python object. */ | ||
extern PyObject *BINARY_OPERATION_FLOORDIV_INT_OBJECT(PyObject *operand1, PyObject *operand2); | ||
#endif | ||
|
||
#if PYTHON_VERSION < 300 | ||
/* Code referring to "INT" corresponds to Python2 'int' and "INT" to Python2 'int'. */ | ||
extern PyObject *BINARY_OPERATION_FLOORDIV_INT_INT(PyObject *operand1, PyObject *operand2); | ||
#endif | ||
|
||
/* Code referring to "OBJECT" corresponds to any Python object and "LONG" to Python2 'long', Python3 'int'. */ | ||
extern PyObject *BINARY_OPERATION_FLOORDIV_OBJECT_LONG(PyObject *operand1, PyObject *operand2); | ||
|
||
/* Code referring to "LONG" corresponds to Python2 'long', Python3 'int' and "OBJECT" to any Python object. */ | ||
extern PyObject *BINARY_OPERATION_FLOORDIV_LONG_OBJECT(PyObject *operand1, PyObject *operand2); | ||
|
||
/* Code referring to "LONG" corresponds to Python2 'long', Python3 'int' and "LONG" to Python2 'long', Python3 'int'. */ | ||
extern PyObject *BINARY_OPERATION_FLOORDIV_LONG_LONG(PyObject *operand1, PyObject *operand2); | ||
|
||
/* Code referring to "OBJECT" corresponds to any Python object and "FLOAT" to Python 'float'. */ | ||
extern PyObject *BINARY_OPERATION_FLOORDIV_OBJECT_FLOAT(PyObject *operand1, PyObject *operand2); | ||
|
||
/* Code referring to "FLOAT" corresponds to Python 'float' and "OBJECT" to any Python object. */ | ||
extern PyObject *BINARY_OPERATION_FLOORDIV_FLOAT_OBJECT(PyObject *operand1, PyObject *operand2); | ||
|
||
/* Code referring to "FLOAT" corresponds to Python 'float' and "FLOAT" to Python 'float'. */ | ||
extern PyObject *BINARY_OPERATION_FLOORDIV_FLOAT_FLOAT(PyObject *operand1, PyObject *operand2); | ||
|
||
/* Code referring to "FLOAT" corresponds to Python 'float' and "LONG" to Python2 'long', Python3 'int'. */ | ||
extern PyObject *BINARY_OPERATION_FLOORDIV_FLOAT_LONG(PyObject *operand1, PyObject *operand2); | ||
|
||
/* Code referring to "LONG" corresponds to Python2 'long', Python3 'int' and "FLOAT" to Python 'float'. */ | ||
extern PyObject *BINARY_OPERATION_FLOORDIV_LONG_FLOAT(PyObject *operand1, PyObject *operand2); | ||
|
||
#if PYTHON_VERSION < 300 | ||
/* Code referring to "FLOAT" corresponds to Python 'float' and "INT" to Python2 'int'. */ | ||
extern PyObject *BINARY_OPERATION_FLOORDIV_FLOAT_INT(PyObject *operand1, PyObject *operand2); | ||
#endif | ||
|
||
#if PYTHON_VERSION < 300 | ||
/* Code referring to "INT" corresponds to Python2 'int' and "FLOAT" to Python 'float'. */ | ||
extern PyObject *BINARY_OPERATION_FLOORDIV_INT_FLOAT(PyObject *operand1, PyObject *operand2); | ||
#endif | ||
|
||
#if PYTHON_VERSION < 300 | ||
/* Code referring to "LONG" corresponds to Python2 'long', Python3 'int' and "INT" to Python2 'int'. */ | ||
extern PyObject *BINARY_OPERATION_FLOORDIV_LONG_INT(PyObject *operand1, PyObject *operand2); | ||
#endif | ||
|
||
#if PYTHON_VERSION < 300 | ||
/* Code referring to "INT" corresponds to Python2 'int' and "LONG" to Python2 'long', Python3 'int'. */ | ||
extern PyObject *BINARY_OPERATION_FLOORDIV_INT_LONG(PyObject *operand1, PyObject *operand2); | ||
#endif | ||
|
||
/* Code referring to "OBJECT" corresponds to any Python object and "OBJECT" to any Python object. */ | ||
extern PyObject *BINARY_OPERATION_FLOORDIV_OBJECT_OBJECT(PyObject *operand1, PyObject *operand2); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
81 changes: 81 additions & 0 deletions
81
nuitka/build/include/nuitka/helper/operations_binary_truediv.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
// Copyright 2019, Kay Hayen, mailto:[email protected] | ||
// | ||
// Part of "Nuitka", an optimizing Python compiler that is compatible and | ||
// integrates with CPython, but also works on its own. | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
// | ||
/* WARNING, this code is GENERATED. Modify the template HelperOperationBinary.c.j2 instead! */ | ||
/* C helpers for type specialized "/" (TRUEDIV) operations */ | ||
|
||
#if PYTHON_VERSION < 300 | ||
/* Code referring to "OBJECT" corresponds to any Python object and "INT" to Python2 'int'. */ | ||
extern PyObject *BINARY_OPERATION_TRUEDIV_OBJECT_INT(PyObject *operand1, PyObject *operand2); | ||
#endif | ||
|
||
#if PYTHON_VERSION < 300 | ||
/* Code referring to "INT" corresponds to Python2 'int' and "OBJECT" to any Python object. */ | ||
extern PyObject *BINARY_OPERATION_TRUEDIV_INT_OBJECT(PyObject *operand1, PyObject *operand2); | ||
#endif | ||
|
||
#if PYTHON_VERSION < 300 | ||
/* Code referring to "INT" corresponds to Python2 'int' and "INT" to Python2 'int'. */ | ||
extern PyObject *BINARY_OPERATION_TRUEDIV_INT_INT(PyObject *operand1, PyObject *operand2); | ||
#endif | ||
|
||
/* Code referring to "OBJECT" corresponds to any Python object and "LONG" to Python2 'long', Python3 'int'. */ | ||
extern PyObject *BINARY_OPERATION_TRUEDIV_OBJECT_LONG(PyObject *operand1, PyObject *operand2); | ||
|
||
/* Code referring to "LONG" corresponds to Python2 'long', Python3 'int' and "OBJECT" to any Python object. */ | ||
extern PyObject *BINARY_OPERATION_TRUEDIV_LONG_OBJECT(PyObject *operand1, PyObject *operand2); | ||
|
||
/* Code referring to "LONG" corresponds to Python2 'long', Python3 'int' and "LONG" to Python2 'long', Python3 'int'. */ | ||
extern PyObject *BINARY_OPERATION_TRUEDIV_LONG_LONG(PyObject *operand1, PyObject *operand2); | ||
|
||
/* Code referring to "OBJECT" corresponds to any Python object and "FLOAT" to Python 'float'. */ | ||
extern PyObject *BINARY_OPERATION_TRUEDIV_OBJECT_FLOAT(PyObject *operand1, PyObject *operand2); | ||
|
||
/* Code referring to "FLOAT" corresponds to Python 'float' and "OBJECT" to any Python object. */ | ||
extern PyObject *BINARY_OPERATION_TRUEDIV_FLOAT_OBJECT(PyObject *operand1, PyObject *operand2); | ||
|
||
/* Code referring to "FLOAT" corresponds to Python 'float' and "FLOAT" to Python 'float'. */ | ||
extern PyObject *BINARY_OPERATION_TRUEDIV_FLOAT_FLOAT(PyObject *operand1, PyObject *operand2); | ||
|
||
/* Code referring to "FLOAT" corresponds to Python 'float' and "LONG" to Python2 'long', Python3 'int'. */ | ||
extern PyObject *BINARY_OPERATION_TRUEDIV_FLOAT_LONG(PyObject *operand1, PyObject *operand2); | ||
|
||
/* Code referring to "LONG" corresponds to Python2 'long', Python3 'int' and "FLOAT" to Python 'float'. */ | ||
extern PyObject *BINARY_OPERATION_TRUEDIV_LONG_FLOAT(PyObject *operand1, PyObject *operand2); | ||
|
||
#if PYTHON_VERSION < 300 | ||
/* Code referring to "FLOAT" corresponds to Python 'float' and "INT" to Python2 'int'. */ | ||
extern PyObject *BINARY_OPERATION_TRUEDIV_FLOAT_INT(PyObject *operand1, PyObject *operand2); | ||
#endif | ||
|
||
#if PYTHON_VERSION < 300 | ||
/* Code referring to "INT" corresponds to Python2 'int' and "FLOAT" to Python 'float'. */ | ||
extern PyObject *BINARY_OPERATION_TRUEDIV_INT_FLOAT(PyObject *operand1, PyObject *operand2); | ||
#endif | ||
|
||
#if PYTHON_VERSION < 300 | ||
/* Code referring to "LONG" corresponds to Python2 'long', Python3 'int' and "INT" to Python2 'int'. */ | ||
extern PyObject *BINARY_OPERATION_TRUEDIV_LONG_INT(PyObject *operand1, PyObject *operand2); | ||
#endif | ||
|
||
#if PYTHON_VERSION < 300 | ||
/* Code referring to "INT" corresponds to Python2 'int' and "LONG" to Python2 'long', Python3 'int'. */ | ||
extern PyObject *BINARY_OPERATION_TRUEDIV_INT_LONG(PyObject *operand1, PyObject *operand2); | ||
#endif | ||
|
||
/* Code referring to "OBJECT" corresponds to any Python object and "OBJECT" to any Python object. */ | ||
extern PyObject *BINARY_OPERATION_TRUEDIV_OBJECT_OBJECT(PyObject *operand1, PyObject *operand2); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.