2022-01-12 00:01:42 +08:00
|
|
|
#include "generate_x86_format.h"
|
|
|
|
#include "handle_sync.h"
|
|
|
|
#include "init.h"
|
|
|
|
#include "insert_sync.h"
|
|
|
|
#include "insert_warp_loop.h"
|
|
|
|
#include "performance.h"
|
|
|
|
#include "tool.h"
|
|
|
|
#include "warp_func.h"
|
|
|
|
#include "llvm/IR/Module.h"
|
|
|
|
#include <assert.h>
|
2022-05-04 20:59:38 +08:00
|
|
|
#include <fstream>
|
2022-01-12 00:01:42 +08:00
|
|
|
#include <iostream>
|
2022-05-04 20:59:38 +08:00
|
|
|
#include <llvm/Support/raw_ostream.h>
|
2022-01-12 00:01:42 +08:00
|
|
|
#include <map>
|
|
|
|
#include <set>
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
using namespace llvm;
|
|
|
|
|
2022-05-04 20:59:38 +08:00
|
|
|
std::string PATH = "kernel_meta.log";
|
|
|
|
|
2022-01-12 00:01:42 +08:00
|
|
|
int main(int argc, char **argv) {
|
2022-05-04 20:59:38 +08:00
|
|
|
assert(argc == 3 && "incorrect number of arguments\n");
|
2022-01-12 00:01:42 +08:00
|
|
|
llvm::Module *program = LoadModuleFromFilr(argv[1]);
|
2022-05-04 20:59:38 +08:00
|
|
|
|
|
|
|
std::ofstream fout;
|
|
|
|
fout.open(PATH);
|
2022-01-12 00:01:42 +08:00
|
|
|
|
|
|
|
// inline, and create auxiliary global variables
|
2022-05-04 20:59:38 +08:00
|
|
|
init_block(program, fout);
|
2022-01-12 00:01:42 +08:00
|
|
|
// insert sync before each vote, and replace the
|
|
|
|
// original vote function to warp vote
|
|
|
|
handle_warp_vote(program);
|
2022-05-04 20:59:38 +08:00
|
|
|
|
2022-01-12 00:01:42 +08:00
|
|
|
// replace warp shuffle
|
|
|
|
handle_warp_shfl(program);
|
2022-09-16 00:33:28 +08:00
|
|
|
|
2022-01-12 00:01:42 +08:00
|
|
|
// insert sync
|
|
|
|
insert_sync(program);
|
2022-09-16 00:33:28 +08:00
|
|
|
|
2022-01-12 00:01:42 +08:00
|
|
|
// split block by sync
|
|
|
|
split_block_by_sync(program);
|
|
|
|
// add loop for intra&intera thread
|
|
|
|
insert_warp_loop(program);
|
2022-05-04 20:59:38 +08:00
|
|
|
|
2022-01-12 00:01:42 +08:00
|
|
|
// (TODO): replace this patch
|
2022-05-04 20:59:38 +08:00
|
|
|
replace_built_in_function(program);
|
|
|
|
|
2022-09-16 00:33:28 +08:00
|
|
|
// TODO: replace with a more general function
|
|
|
|
// Not only for x86 backend
|
2022-01-12 00:01:42 +08:00
|
|
|
generate_x86_format(program);
|
2022-05-04 20:59:38 +08:00
|
|
|
|
2022-01-12 00:01:42 +08:00
|
|
|
// performance optimization
|
|
|
|
performance_optimization(program);
|
|
|
|
|
2022-05-04 20:59:38 +08:00
|
|
|
VerifyModule(program);
|
|
|
|
|
2022-01-12 00:01:42 +08:00
|
|
|
DumpModule(program, argv[2]);
|
2022-05-04 20:59:38 +08:00
|
|
|
|
|
|
|
fout.close();
|
2022-01-12 00:01:42 +08:00
|
|
|
return 0;
|
|
|
|
}
|