Author: Manuel Jacob Branch: llvm-translation-backend Changeset: r68948:942d2a6f3ece Date: 2014-01-25 23:16 +0100 http://bitbucket.org/pypy/pypy/changeset/942d2a6f3ece/
Log: Add llvm_* operations to llinterp. diff --git a/rpython/rtyper/llinterp.py b/rpython/rtyper/llinterp.py --- a/rpython/rtyper/llinterp.py +++ b/rpython/rtyper/llinterp.py @@ -919,6 +919,18 @@ def op_stack_current(self): return 0 + def op_llvm_gcmap(self): + raise NotImplementedError("llvm_gcmap") + + def op_llvm_store_gcroot(self): + raise NotImplementedError("llvm_store_gcroot") + + def op_llvm_load_gcroot(self): + raise NotImplementedError("llvm_load_gcroot") + + def op_llvm_stack_malloc(self): + raise NotImplementedError("llvm_stack_malloc") + # __________________________________________________________ # operations on addresses _______________________________________________ pypy-commit mailing list pypy-commit@python.org https://mail.python.org/mailman/listinfo/pypy-commit