Go to file
Claudio Maggioni 5d096cc051 homework done 2023-10-01 13:09:36 +02:00
.idea homework done 2023-10-01 13:09:36 +02:00
lib Initial commit 2023-10-01 10:17:02 +00:00
src homework done 2023-10-01 13:09:36 +02:00
test homework done 2023-10-01 13:09:36 +02:00
.gitignore Initial commit 2023-10-01 10:17:02 +00:00
README.md homework done 2023-10-01 13:09:36 +02:00
starter-lab-02-simple-bytecode-metrics.iml Initial commit 2023-10-01 10:17:02 +00:00

README.md

Lab 2 - Software Performance 2023

This is Lab 2 of the Software Performance course at USI.

Go to this Lab on iCorsi.

Submission Info

Property Value
First Name Claudio
Last Name Maggioni

Submission Checklist

Please complete this checklist (turn [ ] into [X]) before you submit:

  • I completed the above Submission Info
  • I built the project in IntelliJ (Build > Build Project)
  • I ran test/test.sh and verified that it runs (and fails)
  • I implemented the analysis in src/Analyzer.java, outputting:
    • Number of classes (incl. interfaces and enums)
    • Number of concrete non-native, non-abstract methods (methods with code)
    • Total number of instructions (ignoring instructions with opcode -1)
    • Total number of instructions by opcode (ignoring instructions with opcode -1)
    • Total number of method invocation instructions (== call sites)
    • Total number of conditional branch instructions (excluding GOTO, but including multi-way branches)
  • I wrote the source code myself and did not look at the source code of my classmates
  • I ran test/test.sh and verified that it runs and passes
  • I committed my changes (at least one commit, but possibly many)
  • I pushed my commits to GitHub