-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
270 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
#!/usr/bin/env bash | ||
# Usage: ./scatter.sh bin_path ip-or-hostname1:path/to/folder ip-or-hostname2:path/to/folder... | ||
|
||
if [ "$#" -eq 0 ] | ||
then | ||
echo "Must specify targets to scatter files." >&2 | ||
exit 1 | ||
fi | ||
|
||
trap "exit" INT | ||
|
||
NODES=($@) | ||
M=${#NODES[@]} | ||
BIN_PATH=$1 | ||
BIN_PATH=`realpath ${BIN_PATH}` | ||
|
||
for i in $(seq 1 $(($M-1))) | ||
do | ||
target="ubuntu@${NODES[$i]}:/mnt/fix/bins" | ||
source=${BIN_PATH}/bin$((i-1)) | ||
echo "Sending $source to $target." | ||
echo "rsync -a --delete $source/.fix/ $target/.fix/" | ||
rsync -a --delete $source/.fix/ $target/.fix/ -y | ||
done |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
#!/bin/bash | ||
SRC_REL=`dirname $0` | ||
SRC=`realpath ${SRC_REL}` | ||
FIX=${SRC}/.fix | ||
BIN_PATH=$1 | ||
BIN_NUM=$2 | ||
BIN_PATH=`realpath ${BIN_PATH}` | ||
|
||
rm -rf ${BIN_PATH} | ||
mkdir -p ${BIN_PATH} | ||
for i in $( seq 0 $((BIN_NUM - 1)) ) | ||
do | ||
mkdir -p ${BIN_PATH}/bin$i | ||
mkdir -p ${BIN_PATH}/bin$i/.fix | ||
mkdir -p ${BIN_PATH}/bin$i/.fix/data | ||
mkdir -p ${BIN_PATH}/bin$i/.fix/labels | ||
mkdir -p ${BIN_PATH}/bin$i/.fix/relations | ||
mkdir -p ${BIN_PATH}/bin$i/.fix/pins | ||
done | ||
|
||
echo "${SRC}/build/src/serialize/serialize-to-bins ${SRC}/ ${SRC}/build/llvm-project/llvm/lib/clang/19/include/ ${BIN_PATH} ${BIN_NUM}" | ||
${SRC}/build/src/serialize/serialize-to-bins ${SRC}/ ${SRC}/build/llvm-project/llvm/lib/clang/19/include/ ${BIN_PATH} ${BIN_NUM} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,220 @@ | ||
#include <array> | ||
#include <cstdlib> | ||
#include <filesystem> | ||
#include <iostream> | ||
#include <memory> | ||
#include <random> | ||
#include <stdexcept> | ||
#include <string> | ||
|
||
#include "handle.hh" | ||
#include "handle_post.hh" | ||
#include "handle_util.hh" | ||
#include "repository.hh" | ||
|
||
#include "depfile.hh" | ||
#include "file_names.hh" | ||
|
||
using namespace std; | ||
namespace fs = std::filesystem; | ||
|
||
Repository rp; | ||
|
||
Handle<Fix> to_fix( Handle<AnyTree> h ) | ||
{ | ||
return h.visit<Handle<Fix>>( []( auto h ) { return h.template into<Fix>(); } ); | ||
} | ||
|
||
template<FixHandle... Args> | ||
Handle<AnyTree> create_tree( Args... args ) | ||
{ | ||
OwnedMutTree tree = OwnedMutTree::allocate( sizeof...( args ) ); | ||
size_t i = 0; | ||
( | ||
[&] { | ||
tree[i] = args; | ||
i++; | ||
}(), | ||
... ); | ||
return rp.create( make_shared<OwnedTree>( std::move( tree ) ) ); | ||
} | ||
|
||
Handle<AnyTree> create_tree( vector<Handle<Fix>> vec ) | ||
{ | ||
OwnedMutTree tree = OwnedMutTree::allocate( vec.size() ); | ||
for ( size_t i = 0; i < vec.size(); i++ ) { | ||
tree[i] = vec[i]; | ||
} | ||
return rp.create( make_shared<OwnedTree>( std::move( tree ) ) ); | ||
} | ||
|
||
Handle<Blob> create_blob( fs::path p ) | ||
{ | ||
return rp.create( make_shared<OwnedBlob>( p ) ); | ||
} | ||
|
||
Handle<Fix> create_blob_ref( Handle<Fix> arg ) | ||
{ | ||
return handle::extract<Named>( arg ) | ||
.transform( []( auto handle ) { return Handle<BlobRef>( Handle<Blob>( handle ) ); } ) | ||
.or_else( []() -> optional<Handle<BlobRef>> { throw runtime_error( "Not reffable" ); } ) | ||
.value(); | ||
} | ||
|
||
Handle<AnyTree> create_tag( Handle<Fix> arg0, Handle<Fix> arg1, Handle<Fix> arg2 ) | ||
{ | ||
OwnedMutTree mut_tree = OwnedMutTree::allocate( 3 ); | ||
mut_tree[0] = arg0; | ||
mut_tree[1] = arg1; | ||
mut_tree[2] = arg2; | ||
|
||
auto tree = make_shared<OwnedTree>( std::move( mut_tree ) ); | ||
auto handle = handle::create( tree ); | ||
auto tagged = handle.visit<Handle<AnyTree>>( []( auto h ) { return h.tag(); } ); | ||
|
||
rp.put( tagged, tree ); | ||
return tagged; | ||
} | ||
|
||
Handle<Fix> create_tree_ref( Handle<Fix> arg0 ) | ||
{ | ||
Handle<AnyTreeRef> h | ||
= handle::extract<ObjectTree>( arg0 ) | ||
.transform( [&]( auto handle ) -> Handle<AnyTreeRef> { | ||
return handle.template into<ObjectTreeRef>( rp.get( handle ).value()->size() ); | ||
} ) | ||
.or_else( [&]() -> optional<Handle<AnyTreeRef>> { | ||
return handle::extract<ValueTree>( arg0 ).transform( [&]( auto handle ) -> Handle<AnyTreeRef> { | ||
return handle.template into<ValueTreeRef>( rp.get( handle ).value()->size() ); | ||
} ); | ||
} ) | ||
.or_else( []() -> optional<Handle<AnyTreeRef>> { throw runtime_error( "Not reffable" ); } ) | ||
.value(); | ||
return handle::fix( h ); | ||
} | ||
|
||
int main( int argc, char* argv[] ) | ||
{ | ||
if ( argc != 5 ) { | ||
cerr << "Usage: " << argv[0] << " path_to_base_path path_to_resource_headers path_to_bins number_of_bins\n"; | ||
return -1; | ||
} | ||
|
||
string path_str = string( argv[1] ); | ||
fs::path base_path { path_str }; | ||
fs::path bins_path { string( argv[3] ) }; | ||
|
||
vector<shared_ptr<Repository>> bins; | ||
for ( int i = 0; i < atoi( argv[4] ); i++ ) { | ||
bins.emplace_back( make_shared<Repository>( bins_path / ( "bin" + to_string( i ) ) / ".fix" ) ); | ||
} | ||
|
||
random_device rd; | ||
mt19937 gen( rd() ); | ||
uniform_int_distribution<int> distrib( 0, atoi( argv[4] ) - 1 ); | ||
|
||
vector<Handle<Fix>> system_dep_tree; | ||
for ( const char* file_name : system_deps ) { | ||
auto blob = create_blob( file_name ); | ||
auto ref = create_blob_ref( blob ); | ||
system_dep_tree.push_back( ref ); | ||
|
||
auto bin_idx = distrib( gen ); | ||
bins[bin_idx]->put( blob.unwrap<Named>(), rp.get( blob.unwrap<Named>() ).value() ); | ||
} | ||
|
||
auto system_dep_tree_name = create_tree( system_dep_tree ); | ||
bins[distrib( gen )]->put( system_dep_tree_name, rp.get( system_dep_tree_name ).value() ); | ||
|
||
vector<Handle<Fix>> clang_dep_tree; | ||
string resource_dir_path( argv[2] ); | ||
for ( const char* file_name : clang_deps ) { | ||
string file_path = resource_dir_path + get_base_name( file_name ); | ||
auto blob = create_blob( file_path ); | ||
auto ref = create_blob_ref( blob ); | ||
clang_dep_tree.push_back( ref ); | ||
|
||
auto bin_idx = distrib( gen ); | ||
bins[bin_idx]->put( blob.unwrap<Named>(), rp.get( blob.unwrap<Named>() ).value() ); | ||
} | ||
auto clang_dep_tree_name = create_tree( clang_dep_tree ); | ||
bins[distrib( gen )]->put( clang_dep_tree_name, rp.get( clang_dep_tree_name ).value() ); | ||
|
||
array<string, 5> files = { "wasm-to-c-fix", "c-to-elf-fix", "link-elfs-fix", "map", "compile" }; | ||
vector<Handle<Blob>> wasm_names; | ||
vector<Handle<Blob>> elf_names; | ||
|
||
for ( auto file : files ) { | ||
auto blob = create_blob( base_path / ( "fix-build/src/fix-driver/" + file + ".wasm" ) ); | ||
wasm_names.push_back( blob ); | ||
bins[distrib( gen )]->put( blob.unwrap<Named>(), rp.get( blob.unwrap<Named>() ).value() ); | ||
} | ||
|
||
for ( auto file : files ) { | ||
elf_names.push_back( create_blob( base_path / "tmp" / ( file + ".o" ) ) ); | ||
} | ||
|
||
vector<Handle<Fix>> runnable_tags; | ||
auto compile_fixedpoint = create_tag( elf_names[4], elf_names[4], Handle<Literal>( "Runnable" ) ); | ||
auto compile_runnable_tag | ||
= create_tag( handle::fix( compile_fixedpoint ), elf_names[4], Handle<Literal>( "Runnable" ) ); | ||
|
||
for ( size_t i = 0; i < 4; i++ ) { | ||
auto tag = create_tag( handle::fix( compile_fixedpoint ), elf_names[i], Handle<Literal>( "Runnable" ) ); | ||
runnable_tags.push_back( handle::fix( tag ) ); | ||
|
||
auto bin_idx = distrib( gen ); | ||
bins[bin_idx]->put( elf_names[i].unwrap<Named>(), rp.get( elf_names[i].unwrap<Named>() ).value() ); | ||
bins[bin_idx]->put( tag, rp.get( tag ).value() ); | ||
} | ||
|
||
// {runnable-wasm2c.elf, runnable-clang.elf, runnable-lld.elf, system_dep_tree, clang_dep_tree, runnable-map.elf } | ||
auto compile_tool_tree_name = create_tree( create_tree_ref( runnable_tags[0] ), | ||
create_tree_ref( runnable_tags[1] ), | ||
create_tree_ref( runnable_tags[2] ), | ||
create_tree_ref( handle::fix( system_dep_tree_name ) ), | ||
create_tree_ref( handle::fix( clang_dep_tree_name ) ), | ||
create_tree_ref( runnable_tags[3] ) ); | ||
|
||
// Tag compile_tool_tree bootstrap | ||
auto tagged_compile_tool_tree = create_tag( | ||
handle::fix( compile_fixedpoint ), handle::fix( compile_tool_tree_name ), Handle<Literal>( "Bootstrap" ) ); | ||
|
||
// Encode: {r, runnable-compile.elf, tagged-compile-tool-tree} | ||
auto compile_encode_name = create_tree( | ||
Handle<Literal>( "compile" ), handle::fix( compile_fixedpoint ), handle::fix( tagged_compile_tool_tree ) ); | ||
|
||
rp.label( "compile-encode", handle::fix( compile_encode_name ) ); | ||
|
||
for ( auto& bin : bins ) { | ||
bin->put( compile_tool_tree_name, rp.get( compile_tool_tree_name ).value() ); | ||
|
||
bin->put( compile_fixedpoint, rp.get( compile_fixedpoint ).value() ); | ||
bin->label( "compile-fixed-point", handle::fix( compile_fixedpoint ) ); | ||
bin->put( elf_names[4].unwrap<Named>(), rp.get( elf_names[4].unwrap<Named>() ).value() ); | ||
bin->label( "compile-elf", elf_names[4] ); | ||
bin->put( compile_tool_tree_name, rp.get( compile_tool_tree_name ).value() ); | ||
bin->put( compile_encode_name, rp.get( compile_encode_name ).value() ); | ||
bin->label( "compile-encode", handle::fix( compile_encode_name ) ); | ||
bin->put( tagged_compile_tool_tree, rp.get( tagged_compile_tool_tree ).value() ); | ||
} | ||
|
||
size_t index = 0; | ||
for ( auto file : files ) { | ||
rp.label( file + "-wasm", wasm_names[index] ); | ||
bins[0]->label( file + "-wasm", wasm_names[index] ); | ||
index++; | ||
} | ||
|
||
for ( size_t i = 0; i < 4; i++ ) { | ||
rp.label( files[i] + "-runnable-tag", runnable_tags[i] ); | ||
} | ||
|
||
rp.label( "compile-fixed-point", handle::fix( compile_fixedpoint ) ); | ||
rp.label( "compile-runnable-tag", handle::fix( compile_runnable_tag ) ); | ||
rp.label( "compile-elf", elf_names[4] ); | ||
rp.label( "system-dep-tree", handle::fix( system_dep_tree_name ) ); | ||
rp.label( "clang-dep-tree", handle::fix( clang_dep_tree_name ) ); | ||
|
||
return 0; | ||
} |