Skip to content

Commit f7c1ec4

Browse files
authored
Refactor (#219)
* finish first pass * pass compile * pass compile * minor fix * format * improve error handling while loading a module/addon * Service engines now can use default prefix as a fallback * support default path for mrpc build_cache * adding a Makefile.toml * gradually remove unused or not-ffi-friendly types/crates * manually compile plugins successfully * save * save * migrate from structopt to clap * save * the skeleton for the linker * update * save * finish the step before resolving symbols * implemented relocation logic * update * relocation for GOT * implement relocation for PLT, now can load libcore.o! * can properly load libraries by manually handle dependencies! * fix bug, now can run a plugin function 🍻 * save * load_archive is working * added TLS support! * fixbug * remove redundant debug prints * format * tested transport_rdma and transport_tcp * integrate rt linker with the control plane, seems everythings runs well * replace some remaining KOALA to PHOENIX * mrpc can run! * refactor, separate phoenix into phoenix_common and phoenixos, logging not working * add phoenix_cargo * save * it compiles * fix * fix bug in runtime linker and phoenix_cargo, the runtime linker now load libstd * fix bug in the previous build process * fixbug, added support for linking for large code model * move injected dependencies to phoenix-common-workspace, add mrpc plugins back * rename uapi to phoenix-api * renaming libphoenix to phoenix-syscalls * minor fix * fix tcp performance issue caused by upstream change in mio 0.8.5 * add Makefile.toml * fixbug of rpc server panicking at duplicate connections * multiple fixes, use a separate directory for building phoenix and mrpc backend related things, the user lib and apps still use cargo; also fix the benchmark launcher * add exmaple config to dynamic load plugins * simplify phoenix.toml * fixbug * update readme * update readme for benchmark launcher
1 parent e3d83e1 commit f7c1ec4

File tree

445 files changed

+11886
-5055
lines changed

Some content is hidden

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

445 files changed

+11886
-5055
lines changed

.cargo/config.toml

+18-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,25 @@
1-
[alias] # command aliases
1+
[alias]
2+
# command aliases
23
rr = "run --release"
34
build-plan = "build --build-plan -Z unstable-options"
45

56
[env]
67
RUST_BACKTRACE = "1"
78

89
[build]
9-
# link libphoenix and all engine plugins as dynamic library
10-
rustflags = ["-C", "prefer-dynamic", "-C", "rpath"]
10+
rustflags = [
11+
# "-C", "codegen-units=1",
12+
13+
# link all symbols in dependent crates even if they are not actually used (moved to phoenix/build.rs)
14+
"-C", "link-dead-code",
15+
16+
# employ no restriction on the addresses of the symbols and sizes of sections,
17+
# as more and more plugins loaded, 2GB code and data size might be too restricted.
18+
"-C", "code-model=large",
19+
]
20+
# disable incremental compilation to ensure cargo prints inforamtion about every crates
21+
# incremental = false
22+
23+
[unstable]
24+
# -Zbinary-dep-depinfo allows us to track dependencies of each rlib
25+
binary-dep-depinfo = true

.gitignore

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
phoenix_compile_log.txt
2+
13
# Prerequisites
24
*.d
35

@@ -69,4 +71,4 @@ Icon
6971
cmake-build-*/
7072

7173
# Private folder for development
72-
/_private
74+
/_private

.gitmodules

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
[submodule "src/3rdparty/prost"]
2-
path = src/3rdparty/prost
3-
url = [email protected]:phoenix-dataplane/prost.git
4-
branch = mrpc
5-
[submodule "src/phoenix_examples/masstree_analytics/libmt_index/masstree-beta"]
6-
path = src/phoenix_examples/masstree_analytics/libmt_index/masstree-beta
1+
[submodule "experimental/mrpc/examples/masstree_analytics/libmt_index/masstree-beta"]
2+
path = experimental/mrpc/examples/masstree_analytics/libmt_index/masstree-beta
73
url = https://github.com/anujkaliaiitd/masstree-beta.git
4+
[submodule "experimental/mrpc/3rdparty/prost"]
5+
path = experimental/mrpc/3rdparty/prost
6+
url = [email protected]:phoenix-dataplane/prost.git
7+
branch = mrpc-refactor

0 commit comments

Comments
 (0)