Commit bd3cfab0 authored by Kevin Modzelewski's avatar Kevin Modzelewski

Get out of the interpreter faster

parent 218d8cd5
...@@ -43,7 +43,7 @@ ...@@ -43,7 +43,7 @@
namespace pyston { namespace pyston {
#define OSR_THRESHOLD 100 #define OSR_THRESHOLD 100
#define REOPT_THRESHOLD 100 #define REOPT_THRESHOLD 10
union Value { union Value {
bool b; bool b;
......
...@@ -53,6 +53,8 @@ void EscapeAnalysis::getAnalysisUsage(llvm::AnalysisUsage& info) const { ...@@ -53,6 +53,8 @@ void EscapeAnalysis::getAnalysisUsage(llvm::AnalysisUsage& info) const {
} }
bool EscapeAnalysis::runOnFunction(Function& F) { bool EscapeAnalysis::runOnFunction(Function& F) {
return false; // This analysis is currently broken and not maintained
if (VERBOSITY("opt") >= 1) if (VERBOSITY("opt") >= 1)
outs() << "Running escape analysis on " << F.getName() << '\n'; outs() << "Running escape analysis on " << F.getName() << '\n';
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment