Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

R 3.2 sync #27

Merged
merged 3,931 commits into from
Aug 20, 2015
Merged

R 3.2 sync #27

merged 3,931 commits into from
Aug 20, 2015

Conversation

kmillar
Copy link
Contributor

@kmillar kmillar commented Aug 19, 2015

This merges in the changes from CR up until the point where the CR R-3.2 branch diverges from the trunk.

Not all the functionality has been merged in. Things that are known to be missing include:

  • The bytecode compiler and interpreter have not been updated at all.
  • Custom allocators are not supported
  • shallow_duplicate currently does deep duplication
  • Debugger doesn't recognize 'f'
  • Some of the optimizations of S3 method dispatch are missing.
  • Builtin functions don't attempt to reuse the memory allocations used by the inputs.

Unimplemented builtins:

  • do_returnValue
  • do_bcprofcounts
  • do_bcprofstart
  • do_bcprofstop

maechler and others added 30 commits January 27, 2015 16:36
fix
git-svn-id: https://svn.r-project.org/R/trunk@67637 00db46b3-68df-0310-9c12-caf00c1e9a41
git-svn-id: https://svn.r-project.org/R/trunk@67639 00db46b3-68df-0310-9c12-caf00c1e9a41
also say and show more for the promises in 'e'


git-svn-id: https://svn.r-project.org/R/trunk@67640 00db46b3-68df-0310-9c12-caf00c1e9a41
git-svn-id: https://svn.r-project.org/R/trunk@67641 00db46b3-68df-0310-9c12-caf00c1e9a41
git-svn-id: https://svn.r-project.org/R/trunk@67642 00db46b3-68df-0310-9c12-caf00c1e9a41
git-svn-id: https://svn.r-project.org/R/trunk@67645 00db46b3-68df-0310-9c12-caf00c1e9a41
git-svn-id: https://svn.r-project.org/R/trunk@67646 00db46b3-68df-0310-9c12-caf00c1e9a41
git-svn-id: https://svn.r-project.org/R/trunk@67648 00db46b3-68df-0310-9c12-caf00c1e9a41
git-svn-id: https://svn.r-project.org/R/trunk@67649 00db46b3-68df-0310-9c12-caf00c1e9a41
git-svn-id: https://svn.r-project.org/R/trunk@67651 00db46b3-68df-0310-9c12-caf00c1e9a41
git-svn-id: https://svn.r-project.org/R/trunk@67652 00db46b3-68df-0310-9c12-caf00c1e9a41
git-svn-id: https://svn.r-project.org/R/trunk@67653 00db46b3-68df-0310-9c12-caf00c1e9a41
git-svn-id: https://svn.r-project.org/R/trunk@67656 00db46b3-68df-0310-9c12-caf00c1e9a41
…re ls() did *not* use "all.names=TRUE"

git-svn-id: https://svn.r-project.org/R/trunk@67658 00db46b3-68df-0310-9c12-caf00c1e9a41
git-svn-id: https://svn.r-project.org/R/trunk@67659 00db46b3-68df-0310-9c12-caf00c1e9a41
frequency when the heap needs to grow.


git-svn-id: https://svn.r-project.org/R/trunk@67660 00db46b3-68df-0310-9c12-caf00c1e9a41
the corresponding function, instead of the base namespace; other cleanup


git-svn-id: https://svn.r-project.org/R/trunk@67663 00db46b3-68df-0310-9c12-caf00c1e9a41
git-svn-id: https://svn.r-project.org/R/trunk@67666 00db46b3-68df-0310-9c12-caf00c1e9a41
nested closures; BiocGenerics should install again


git-svn-id: https://svn.r-project.org/R/trunk@67668 00db46b3-68df-0310-9c12-caf00c1e9a41
ripley and others added 27 commits March 3, 2015 09:27
git-svn-id: https://svn.r-project.org/R/trunk@67930 00db46b3-68df-0310-9c12-caf00c1e9a41
…s` argument properly

git-svn-id: https://svn.r-project.org/R/trunk@67932 00db46b3-68df-0310-9c12-caf00c1e9a41
git-svn-id: https://svn.r-project.org/R/trunk@67933 00db46b3-68df-0310-9c12-caf00c1e9a41
This merges in the changes from CR up until the point where
the CR R-3.2 branch diverges from the trunk.

Not all the functionality has been merged in.
Things that are known to be missing include:
- The bytecode compiler and interpreter have not been updated
  at all.
- Custom allocators are not supported
- shallow_duplicate currently does deep duplication
- Debugger doesn't recognize 'f'
- Some of the optimizations of S3 method dispatch are
  missing.
- Builtin functions don't attempt to reuse the memory
  allocations used by the inputs.

Unimplemented builtins:
- do_returnValue
- do_bcprofcounts
- do_bcprofstart
- do_bcprofstop

In addition there are a number of failing tests that require
investigation.
This is required as they are no longer part of the repo.
- A mark/sweep GC would crash if R_SrcRef was nullptr.
- Ensure that R_SrcRef is initialized at process startup.
- Update reference counts for the ByteStack and ProtectStack
  prior to entering a mark/sweep GC.  The sweep phase uses
  the reference counts to immediately delete zero count nodes
  instead of making them moribund, and could incorrectly delete
  objects if the counts don't include those stacks.
Also updated the warning text for a bunch of cases where the upstream version
had been updated, but not the CXXR version.
GCStackRoot as an array.

This prevents errors of the type:
   GCStackRoot<ListVector> x = ...
   RObject y = x[0];
when the intended statement was:
   RObject y = (*x)[0];
kmillar added a commit that referenced this pull request Aug 20, 2015
@kmillar kmillar merged commit 5d10e70 into rho-devel:master Aug 20, 2015
@kmillar kmillar deleted the r_3_2_sync branch August 20, 2015 01:06
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant