Git Product home page Git Product logo

eclipse-openj9 / openj9-omr Goto Github PK

View Code? Open in Web Editor NEW
38.0 38.0 133.0 62.55 MB

Eclipse OpenJ9's clone of the Eclipse OMR (https://github.com/eclipse/omr) project. PRs should be opened against the upstream OMR project whenever possible.

License: Other

CMake 0.90% Makefile 1.19% HTML 0.04% C++ 84.02% C 10.85% Assembly 1.21% TeX 1.14% M4 0.07% Shell 0.05% Ruby 0.01% Python 0.30% Perl 0.06% sed 0.01% Dockerfile 0.01% Awk 0.01% Groovy 0.05% Monkey C 0.01% Objective-C 0.05%

openj9-omr's People

Contributors

0xdaryl avatar a7ehuo avatar akira1saitoh avatar amicic avatar andrewcraik avatar aviansie-ben avatar babsingh avatar bradleywood avatar charliegracie avatar dchopra001 avatar dmitripivkine avatar dnakamura avatar dsouzai avatar fjeremic avatar hzongaro avatar janvrany avatar jason-hall avatar jdmpapin avatar keithc-ca avatar knn-k avatar leonardo2718 avatar linhu2016 avatar mstoodle avatar r30shah avatar rsalman avatar rwy7 avatar samolisov avatar vijaysun-omr avatar wbh123456 avatar youngar avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

openj9-omr's Issues

Snapshot branch is stale

Snapshot branch is stale

I've attempted manually merging but there are some non-trivial conflicts with the OMR code generator.

CONFLICT (add/add): Merge conflict in fvtest/compilertest/tests/CCDataTest.cpp
CONFLICT (content): Merge conflict in compiler/codegen/OMRCodeGenerator.cpp
CONFLICT (add/add): Merge conflict in compiler/codegen/CCData_inlines.hpp
CONFLICT (add/add): Merge conflict in compiler/codegen/CCData.hpp
CONFLICT (add/add): Merge conflict in compiler/codegen/CCData.cpp

unlimitCoreFileSize doesn't check errno for getrlimit/setrlimit

While investigating a reported issue of core files not being produced even though supposedly the core hard ulimit was unlimited (waiting on javacore for confirmation), I noticed that unlimitCoreFileSize doesn't check the return result (errno) for the getrlimit and setrlimit calls. It would be nice if it did so and printed a warning if those calls failed.

Update classNameToSignature to process 'Q' type descriptor

classNameToSignature in Aliases.cpp checks the L reference. The same change needs to be applied to Q type descriptor. However, the existing API classNameToSignature does not have a TR_OpaqueClassBlock * pointer for us to call ClassEnv::isValueTypeClass to distinguish if the class is a VT or not. classNameToSignature is called in many places in OMR and OpenJ9 and not all callers have access to TR_OpaqueClassBlock * pointer.

char *
classNameToSignature(const char *name, int32_t &len, TR::Compilation * comp, TR_AllocationKind allocKind)
   {
   char * sig;

   if (name[0] == '[')
      {
...
      }
   else
      {
      len += 2;
      sig = (char *)comp->trMemory()->allocateMemory(len+1, allocKind);
      sig[0] = 'L';   <=== // TODO: Need to process Value Type descriptor 'Q'
      memcpy(sig+1,name,len-2);
      sig[len-1]=';';
      }

related to eclipse-openj9/openj9#12237

Security Best Practices

Hi,

As a member of the Security Team from the Eclipse Foundation, we used a tools Scorecard and StepSecurity to analyze this repo in order to push a pull request that cover some or all the following best practices below:

As a result, You will see a PR coming from StepSecurity to help to implement those fixes above which will cover a list of points below identified detected:

Please don’t hesitate and reach out if there is something unclear above.

Kind Regards,
Francisco Perez

Track merges from master -> openj9 branch

While we have an automated build to sync from Eclipse OMR to the openj9-omr repo's master branch, there isn't yet automation to test and promote to the openj9 branch.

A verbose and overly careful process for doing this:

$ git fetch openj9-omr // fetch from the remote
$ git checkout master
$ git rebase openj9-omr/master // ensure local master is up to date
$ git log --oneline // get listing of commits to determine which to promote to the openj9 branch
$ git checkout openj9
$ git rebase master // This MUST be a fast forward merge. If it's not, there's a problem
$ git log --oneline // ensure history is the same as above
$ git reset --hard sha_of_chosen_commit
$ git push openj9-omr openj9 // format is and branch must be openj9

Use this item to track when the openj9 branch is updated.

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.