Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: rubinius/rubinius
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: b3a77ad4d185
Choose a base ref
...
head repository: rubinius/rubinius
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 32e06e8994eb
Choose a head ref
  • 3 commits
  • 9 files changed
  • 1 contributor

Commits on Jul 30, 2016

  1. Removed more legacy JIT cruft.

    brixen committed Jul 30, 2016
    Copy the full SHA
    927d85f View commit details
  2. Copy the full SHA
    04a17f0 View commit details

Commits on Aug 1, 2016

  1. Copy the full SHA
    32e06e8 View commit details
Showing with 2,404 additions and 11 deletions.
  1. +1 −0 machine/call_frame.cpp
  2. +3 −0 machine/call_frame.hpp
  3. +2,200 −0 machine/insns.def
  4. +89 −0 machine/insns.hpp
  5. +12 −0 machine/interpreter.cpp
  6. +21 −0 machine/interpreter.hpp
  7. +30 −5 rakelib/blueprint.rb
  8. +37 −0 rakelib/instruction_parser.rb
  9. +11 −6 rakelib/vm.rake
1 change: 1 addition & 0 deletions machine/call_frame.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#include "memory.hpp"
#include "call_frame.hpp"
#include "object_utils.hpp"
#include "machine_code.hpp"

#include "builtin/class.hpp"
#include "builtin/compiled_code.hpp"
3 changes: 3 additions & 0 deletions machine/call_frame.hpp
Original file line number Diff line number Diff line change
@@ -16,6 +16,7 @@ namespace rubinius {
class VariableScope;
class NativeMethodFrame;
class BlockEnvironment;
class MachineCode;

namespace jit {
class RuntimeData;
@@ -51,6 +52,8 @@ namespace rubinius {
StackVariables* scope;

Arguments* arguments;
Object** stack_ptr_;
MachineCode* machine_code;

// Stack
Object* stk[0];
Loading