Giter VIP home page Giter VIP logo

scala-asm's Introduction

A fork of ASM for the Scala Compiler

This repository contains a fork of the ASM Java bytecode manipulation and analysis framework for the Scala compiler.

Structure

This is a fork (a git clone) of the offical asm repository at https://gitlab.ow2.org/asm/asm.

Tags of the form ASM_X_Y* come from the upstream repo. Tags named vX.Y.Z-scala-n are created in this repo and used to release our fork under "org.scala-lang.modules" % "scala-asm".

For each ASM release there's a corresponding branch in this repo, e.g., s-5.2 for ASM 5.2. These branches start at the corresponding ASM release tag, our customizations are commits on top.

The following changes are applied:

  • The package name is changed to scala.tools.asm
  • Unused files are removed, including certain source files (e.g., package org.objectweb.asm.xml)
  • Customizations are applied in commits marked [asm-cherry-pick]

We start a new branch for each ASM release and re-apply our changes in order to keep track what we changed. Besides, it would be non-trivial to merge in changes from upstream, as we deleted many files and moved all sources to a different directory.

Upgrading to a new version of ASM

If you haven't done so, add the upstream repostiory (https://gitlab.ow2.org/asm/asm) as a remote

  • git remote add upstream-asm https://gitlab.ow2.org/asm/asm

Pull changes / tags from upstream

  • git fetch upstream-asm --tags

Review the upstream changes to see if there's anything that requires attention, updates to scripts in this repo, or similar

Create a new branch s-x.y.z starting at the ASM tag for version x.y.z:

  • git checkout -b s-5.2 ASM_5_2

Get the script to prepare the sources

  • Check the history of the previous branch
    • git log --oneline s-5.1
      679bfd52 [asm-cherry-pick] Script for deleting unused files and preparing sources
      3d2e7dc4 (tag: ASM_5_1) Fixed bug #317606.
      
  • Cherry-pick the commit "Script for deleting unused files and preparing sources"
    • git cherry-pick 679bfd52

Run the script

  • ./scripts/selectAndPrepareSources

Push the branch, verify that the commits created by the script look correct

  • git push --set-upstream YOUR_REMOTE_NAME s-5.2

Get the build infrastructure

  • Check the history of the previous branch
    • git log --oneline s-5.1
      5caad9a8 [asm-cherry-pick] Build infrastructure
      1b2484be Remove trailing whitespace
      
  • Cherry-pick the commit "Build infrastructure"
    • git cherry-pick 5caad9a8

Check that the build works correctly

  • sbt clean update test publishLocal
  • for f in target/*.jar; do unzip -l $f; done

Cherry-pick all commits that went on top of the previous branch

  • Check the history of the previous branch
    • git log --oneline --graph s-5.1
      * cdf0cf00 (tag: v5.1.0-scala-2, upstream-github/s-5.1, lrytz-github/s-5.1, s-5.1) [asm-cherry-pick] Support Java 9 bytecode format
      * ee4ea3bc [asm-cherry-pick] Fill exception message for max String literal length
      * a42a7ae7 [asm-cherry-pick] Fix findItemByIndex in case of hash collisions
      * a85d4d57 [asm-cherry-pick] Call interpreter.copyInstruction consistently
      * 70822b0b [asm-cherry-pick] Multiple methods for initializing analysis values
      * 6afb7192 [asm-cherry-pick] Allow setting stack values in analysis frames
      * d8b5c2dc [asm-cherry-pick] Clarify the doc of MethodInsnNode.owner
      * ec767cad [asm-cherry-pick] Fix typos
      * ba0f8bc3 [asm-cherry-pick] Use MethodWriter to compute maxLocals / maxStack
      * 890377dd [asm-cherry-pick] Log names on method size overflow
      * 112da115 [asm-cherry-pick] Associate LabelNodes with their corresponding label
      * 107fd4da [asm-cherry-pick] Ensure instructions belong only to one list
      * 170dba1d [asm-cherry-pick] asm.CustomAttribute class
      * 5caad9a8 [asm-cherry-pick] Build infrastructure
      * 1b2484be Remove trailing whitespace
      * ae684acf Update `@links`, `@associates`
      * a7963e11 Update imports
      * a3cebd5e Update package clauses
      * 2b81e9ad Move sources to src/main/java/scala/tools/asm
      * f1cdde02 Convert all line endings to unix
      * 80c0bb7d Remove unused files
      * 679bfd52 [asm-cherry-pick] Script for deleting unused files and preparing sources
      * 3d2e7dc4 (tag: ASM_5_1) Fixed bug #317606.
      
  • Cherry-pick the commits that are not yet included (5caad9a8..s-5.1 - note that the a range A..B includes B but not A)
    • Check your commit range
      • git log --oneline 5caad9a8..s-5.1
    • Cherry-pick the commits
      • git cherry-pick 5caad9a8..s-5.1

Rebase and clean up

  • Make sure that all commits have the the [asm-cherry-pick] flag
  • Clean up the history
  • If there are changes to the build infrastructure, squash them into the "Build infrastructure" commit

Check that the build works correctly

  • sbt clean update test publishLocal
  • for f in target/*.jar; do unzip -l $f; done

Push the branch to your fork, check everything

  • git push

Push the branch to scala/scala-asm

Create and push a tag to create a release

scala-asm's People

Contributors

lrytz avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.