func compileProgramFromFile(fileName string) core.GmState { b, err := ioutil.ReadFile(fileName) fmt.Println(string(b)) if err != nil { panic(err) } // Generate the LLVM-IR code for Input file /* contentProgram := core.Compile(core.Program{ core.ScDefn{"main", []core.Name{}, compile.Translate(string(b))}, }) */ program := compile.Translate(string(b), fileName) mainFound := false for _, sc := range program { if string(sc.Name) == "main" { mainFound = true break } } if mainFound == false { panic("No main function found in program. Aborting.") } return core.Compile(program) }
// func MainLoop(module llvm.Module, jit llvm.ExecutionEngine) { func MainLoop() { reader := bufio.NewReader(os.Stdin) // H := jit.addModule(module) for { fmt.Print("puff> ") text, err := reader.ReadString('\n') if err == io.EOF { break } if text == "4" { fmt.Print("4") continue } // llvm.compile.Compile(text, module).Dump() // compiledSc := core.CompileSc(core.ScDefn{"main", []core.Name{}, compile.Translate(text)}) // fmt.Println(compiledSc) // core.PrintBody(compiledSc.Body()) fmt.Println(core.Compile(core.Program{ core.ScDefn{"main", []core.Name{}, compile.Translate(text)}, })) } }
func replLoop() { fmt.Println(` __ __ _ __ _ _ / _|/ _| | '_ \| | | | |_| |_ | |_) | |_| | _| _| | .__/ \__,_|_| |_| |_| `) reader := bufio.NewReader(os.Stdin) // H := jit.addModule(module) var globals string for { fmt.Print("puff> ") text, err := reader.ReadString('\n') if err == io.EOF { break } if strings.HasPrefix(text, "fn ") { globals = globals + "\n" + text } else { program := compile.Translate(globals+"\n"+"fn main() => "+text, "repl") core.ShowStates(core.Compile(program)) } } }