This file contains hidden or 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
// Post: https://x.com/VictorTaelin/status/1854326873590792276 | |
// Note: The atomics must be kept. | |
// Main changes: | |
// - supports linux by using mmap | |
// - computed gotos / threaded interpreter | |
// - optional support for atomic 128bit load/stores when ENABLE_128B is defined | |
// | |
// - some smaller changes to reduce pointer indirections | |
// |
This file contains hidden or 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
./pyston_release -s -S -n -c "import optparse" | |
us_compiling: 3245658 | |
us_compiling_1_minimal: 3233558 | |
us_compiling_2_moderate: 12100 | |
us_compiling_analysis_definedness: 144997 | |
us_compiling_analysis_liveness: 158656 | |
us_compiling_analysis_phis: 274485 | |
us_compiling_analysis_types: 141828 | |
us_compiling_irgen: 174236 |
This file contains hidden or 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
// Copyright (c) 2014-2015 Dropbox, Inc. | |
// | |
// 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, |