Skip to content

Commit 8e98944

Browse files
Added all of ARTist's changes to the current branch.
1 parent 592cd3e commit 8e98944

17 files changed

+1435
-21
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,5 @@
1+
.idea
2+
cmake-build-debug
13
JIT_ART
24
**/__pycache__/**
5+
make.sh

CHANGES.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
# Changes
2+
3+
Short summary of the main changes. Execute `CHANGES.sh` for a detailed diff.
4+
5+
## /compiler/oat_writer.cc
6+
7+
- OatWriter::OatWriter
8+
- Probe DexCheckSums
9+
- Rewrite DexChecksums
10+
11+
## /compiler/optimizing/optimizing_compiler.cc
12+
13+
- includes
14+
- adding HArtist Optimization passes
15+
16+
## /dex2oat/dex2oat.cc
17+
18+
Probing if DexLocationChecksum should get rewritten
19+
20+
## runtime/base/logging.cc
21+
22+
Replaced LogTag with dex2artist.gitignore
23+
24+
## Changed/Touched Files
25+
26+
compiler/Android.mk
27+
compiler/driver/compiler_driver.cc
28+
compiler/oat_writer.cc
29+
compiler/oat_writer.h
30+
compiler/optimizing/optimizing_compiler.cc
31+
dex2oat/dex2oat.cc
32+
runtime/base/logging.cc
33+
runtime/base/logging.h
34+
runtime/class_linker.h
35+
runtime/parsed_options.cc

CHANGES.sh

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#!/bin/sh
2+
REVISION="12eb0c532e33ca5d5e98addd580b5ad0a4b71be4"
3+
echo ""
4+
echo "Branch differs by Commits: #" `git log --oneline $REVISION.. | wc -l`
5+
echo ""
6+
git diff $REVISION

0 commit comments

Comments
 (0)