Skip to content

Commit d265242

Browse files
committed
Rename NaHCO3 to teapot
1 parent 2817b93 commit d265242

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

54 files changed

+99
-99
lines changed

.gitmodules

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[submodule "libcheckpoint_x64"]
22
path = libcheckpoint_x64
3-
url = https://github.com/lin-toto/libcheckpoint_x64
3+
url = https://github.com/lin-toto/teapot-libcheckpoint_x64
44
[submodule "honggfuzz"]
55
path = honggfuzz
6-
url = https://github.com/lin-toto/NaHCO3-honggfuzz
6+
url = https://github.com/lin-toto/teapot-honggfuzz

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,5 @@ RUN cd /tmp/teapot/honggfuzz && make && make install && \
2424

2525
RUN rm -rf /tmp/teapot
2626

27-
RUN mkdir /workdir
28-
WORKDIR /workdir
27+
RUN mkdir /workspace
28+
WORKDIR /workspace

README.md

Lines changed: 6 additions & 6 deletions

honggfuzz

libcheckpoint_x64

scripts/fix_asm.sed

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
s/^\.section \.NaHCO3_transient/&, "ax"/
2-
s/^\.section \.NaHCO3_trampolines/&, "ax"/
3-
s/^\.section \.NaHCO3_guards/&, "aw"/
4-
s/^\.section \.NaHCO3_branch_counters/&, "aw"/
5-
/^__guard_start__NaHCO3__:/i .globl __guard_start__NaHCO3__
6-
/^__guard_end__NaHCO3__:/i .globl __guard_end__NaHCO3__
1+
s/^\.section \.teapot_transient/&, "ax"/
2+
s/^\.section \.teapot_trampolines/&, "ax"/
3+
s/^\.section \.teapot_guards/&, "aw"/
4+
s/^\.section \.teapot_branch_counters/&, "aw"/
5+
/^__guard_start__teapot__:/i .globl __guard_start__teapot__
6+
/^__guard_end__teapot__:/i .globl __guard_end__teapot__
77
s/^\.symver/#\.symver/

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@
1111
platforms='any',
1212
install_requires=REQUIREMENTS,
1313
entry_points={
14-
'console_scripts': ['teapot=NaHCO3.cmdline:main'],
14+
'console_scripts': ['teapot=teapot.cmdline:main'],
1515
}
1616
)
File renamed without changes.
File renamed without changes.

NaHCO3/abi/x86_64.py renamed to teapot/abi/x86_64.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
from gtirb_rewriting.abi import _PatchRegisterAllocation
33
from gtirb_rewriting.assembly import Constraints, Register, _AsmSnippet
44

5-
from NaHCO3.config import SCRATCHPAD_SIZE
5+
from teapot.config import SCRATCHPAD_SIZE
66

77
from typing import Tuple, Iterable, Optional, List, Set
88
import copy

0 commit comments

Comments
 (0)