Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
G
golang
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
go
golang
Commits
2b7fde34
Commit
2b7fde34
authored
Oct 15, 2009
by
Russ Cox
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
move austin/eval and austin/ogle to exp/eval and exp/ogle
R=r OCL=35736 CL=35746
parent
218a412e
Hide whitespace changes
Inline
Side-by-side
Showing
34 changed files
with
26 additions
and
13 deletions
+26
-13
Makefile
src/pkg/exp/eval/Makefile
+1
-1
abort.go
src/pkg/exp/eval/abort.go
+0
-0
bridge.go
src/pkg/exp/eval/bridge.go
+0
-0
compiler.go
src/pkg/exp/eval/compiler.go
+0
-0
eval_test.go
src/pkg/exp/eval/eval_test.go
+0
-0
expr.go
src/pkg/exp/eval/expr.go
+0
-0
expr1.go
src/pkg/exp/eval/expr1.go
+0
-0
expr_test.go
src/pkg/exp/eval/expr_test.go
+0
-0
func.go
src/pkg/exp/eval/func.go
+0
-0
gen.go
src/pkg/exp/eval/gen.go
+0
-0
main.go
src/pkg/exp/eval/main.go
+0
-0
scope.go
src/pkg/exp/eval/scope.go
+0
-0
stmt.go
src/pkg/exp/eval/stmt.go
+0
-0
stmt_test.go
src/pkg/exp/eval/stmt_test.go
+0
-0
test.bash
src/pkg/exp/eval/test.bash
+0
-0
type.go
src/pkg/exp/eval/type.go
+0
-0
typec.go
src/pkg/exp/eval/typec.go
+0
-0
util.go
src/pkg/exp/eval/util.go
+0
-0
value.go
src/pkg/exp/eval/value.go
+0
-0
world.go
src/pkg/exp/eval/world.go
+3
-0
Makefile
src/pkg/exp/ogle/Makefile
+1
-1
abort.go
src/pkg/exp/ogle/abort.go
+0
-0
arch.go
src/pkg/exp/ogle/arch.go
+0
-0
cmd.go
src/pkg/exp/ogle/cmd.go
+2
-1
event.go
src/pkg/exp/ogle/event.go
+0
-0
frame.go
src/pkg/exp/ogle/frame.go
+0
-0
goroutine.go
src/pkg/exp/ogle/goroutine.go
+1
-1
main.go
src/pkg/exp/ogle/main.go
+1
-1
process.go
src/pkg/exp/ogle/process.go
+1
-1
rruntime.go
src/pkg/exp/ogle/rruntime.go
+1
-1
rtype.go
src/pkg/exp/ogle/rtype.go
+1
-1
rvalue.go
src/pkg/exp/ogle/rvalue.go
+1
-1
vars.go
src/pkg/exp/ogle/vars.go
+1
-1
run.bash
src/run.bash
+12
-3
No files found.
usr/austin
/eval/Makefile
→
src/pkg/exp
/eval/Makefile
View file @
2b7fde34
...
@@ -4,7 +4,7 @@
...
@@ -4,7 +4,7 @@
include
$(GOROOT)/src/Make.$(GOARCH)
include
$(GOROOT)/src/Make.$(GOARCH)
TARG
=
eval
TARG
=
e
xp/e
val
GOFILES
=
\
GOFILES
=
\
abort.go
\
abort.go
\
bridge.go
\
bridge.go
\
...
...
usr/austin
/eval/abort.go
→
src/pkg/exp
/eval/abort.go
View file @
2b7fde34
File moved
usr/austin
/eval/bridge.go
→
src/pkg/exp
/eval/bridge.go
View file @
2b7fde34
File moved
usr/austin
/eval/compiler.go
→
src/pkg/exp
/eval/compiler.go
View file @
2b7fde34
File moved
usr/austin
/eval/eval_test.go
→
src/pkg/exp
/eval/eval_test.go
View file @
2b7fde34
File moved
usr/austin
/eval/expr.go
→
src/pkg/exp
/eval/expr.go
View file @
2b7fde34
File moved
usr/austin
/eval/expr1.go
→
src/pkg/exp
/eval/expr1.go
View file @
2b7fde34
File moved
usr/austin
/eval/expr_test.go
→
src/pkg/exp
/eval/expr_test.go
View file @
2b7fde34
File moved
usr/austin
/eval/func.go
→
src/pkg/exp
/eval/func.go
View file @
2b7fde34
File moved
usr/austin
/eval/gen.go
→
src/pkg/exp
/eval/gen.go
View file @
2b7fde34
File moved
usr/austin
/eval/main.go
→
src/pkg/exp
/eval/main.go
View file @
2b7fde34
File moved
usr/austin
/eval/scope.go
→
src/pkg/exp
/eval/scope.go
View file @
2b7fde34
File moved
usr/austin
/eval/stmt.go
→
src/pkg/exp
/eval/stmt.go
View file @
2b7fde34
File moved
usr/austin
/eval/stmt_test.go
→
src/pkg/exp
/eval/stmt_test.go
View file @
2b7fde34
File moved
usr/austin
/eval/test.bash
→
src/pkg/exp
/eval/test.bash
View file @
2b7fde34
File moved
usr/austin
/eval/type.go
→
src/pkg/exp
/eval/type.go
View file @
2b7fde34
File moved
usr/austin
/eval/typec.go
→
src/pkg/exp
/eval/typec.go
View file @
2b7fde34
File moved
usr/austin
/eval/util.go
→
src/pkg/exp
/eval/util.go
View file @
2b7fde34
File moved
usr/austin
/eval/value.go
→
src/pkg/exp
/eval/value.go
View file @
2b7fde34
File moved
usr/austin
/eval/world.go
→
src/pkg/exp
/eval/world.go
View file @
2b7fde34
...
@@ -2,6 +2,9 @@
...
@@ -2,6 +2,9 @@
// Use of this source code is governed by a BSD-style
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// license that can be found in the LICENSE file.
// This package is the beginning of an interpreter for Go.
// It can run simple Go programs but does not implement
// interface values or packages.
package
eval
package
eval
import
(
import
(
...
...
usr/austin
/ogle/Makefile
→
src/pkg/exp
/ogle/Makefile
View file @
2b7fde34
...
@@ -4,7 +4,7 @@
...
@@ -4,7 +4,7 @@
include
$(GOROOT)/src/Make.$(GOARCH)
include
$(GOROOT)/src/Make.$(GOARCH)
TARG
=
ogle
TARG
=
exp/
ogle
GOFILES
=
\
GOFILES
=
\
abort.go
\
abort.go
\
arch.go
\
arch.go
\
...
...
usr/austin
/ogle/abort.go
→
src/pkg/exp
/ogle/abort.go
View file @
2b7fde34
File moved
usr/austin
/ogle/arch.go
→
src/pkg/exp
/ogle/arch.go
View file @
2b7fde34
File moved
usr/austin
/ogle/cmd.go
→
src/pkg/exp
/ogle/cmd.go
View file @
2b7fde34
...
@@ -2,13 +2,14 @@
...
@@ -2,13 +2,14 @@
// Use of this source code is governed by a BSD-style
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// license that can be found in the LICENSE file.
// Ogle is the beginning of a debugger for Go.
package
ogle
package
ogle
import
(
import
(
"bufio"
;
"bufio"
;
"debug/elf"
;
"debug/elf"
;
"debug/proc"
;
"debug/proc"
;
"eval"
;
"e
xp/e
val"
;
"fmt"
;
"fmt"
;
"go/scanner"
;
"go/scanner"
;
"go/token"
;
"go/token"
;
...
...
usr/austin
/ogle/event.go
→
src/pkg/exp
/ogle/event.go
View file @
2b7fde34
File moved
usr/austin
/ogle/frame.go
→
src/pkg/exp
/ogle/frame.go
View file @
2b7fde34
File moved
usr/austin
/ogle/goroutine.go
→
src/pkg/exp
/ogle/goroutine.go
View file @
2b7fde34
...
@@ -6,7 +6,7 @@ package ogle
...
@@ -6,7 +6,7 @@ package ogle
import
(
import
(
"debug/proc"
;
"debug/proc"
;
"eval"
;
"e
xp/e
val"
;
"fmt"
;
"fmt"
;
"os"
;
"os"
;
)
)
...
...
usr/austin
/ogle/main.go
→
src/pkg/exp
/ogle/main.go
View file @
2b7fde34
...
@@ -4,7 +4,7 @@
...
@@ -4,7 +4,7 @@
package
main
package
main
import
"ogle"
import
"
exp/
ogle"
func
main
()
{
func
main
()
{
ogle
.
Main
();
ogle
.
Main
();
...
...
usr/austin
/ogle/process.go
→
src/pkg/exp
/ogle/process.go
View file @
2b7fde34
...
@@ -8,7 +8,7 @@ import (
...
@@ -8,7 +8,7 @@ import (
"debug/elf"
;
"debug/elf"
;
"debug/gosym"
;
"debug/gosym"
;
"debug/proc"
;
"debug/proc"
;
"eval"
;
"e
xp/e
val"
;
"fmt"
;
"fmt"
;
"log"
;
"log"
;
"os"
;
"os"
;
...
...
usr/austin
/ogle/rruntime.go
→
src/pkg/exp
/ogle/rruntime.go
View file @
2b7fde34
...
@@ -6,7 +6,7 @@ package ogle
...
@@ -6,7 +6,7 @@ package ogle
import
(
import
(
"debug/proc"
;
"debug/proc"
;
"eval"
;
"e
xp/e
val"
;
"reflect"
;
"reflect"
;
)
)
...
...
usr/austin
/ogle/rtype.go
→
src/pkg/exp
/ogle/rtype.go
View file @
2b7fde34
...
@@ -6,7 +6,7 @@ package ogle
...
@@ -6,7 +6,7 @@ package ogle
import
(
import
(
"debug/proc"
;
"debug/proc"
;
"eval"
;
"e
xp/e
val"
;
"fmt"
;
"fmt"
;
"log"
;
"log"
;
)
)
...
...
usr/austin
/ogle/rvalue.go
→
src/pkg/exp
/ogle/rvalue.go
View file @
2b7fde34
...
@@ -6,7 +6,7 @@ package ogle
...
@@ -6,7 +6,7 @@ package ogle
import
(
import
(
"debug/proc"
;
"debug/proc"
;
"eval"
;
"e
xp/e
val"
;
"fmt"
;
"fmt"
;
)
)
...
...
usr/austin
/ogle/vars.go
→
src/pkg/exp
/ogle/vars.go
View file @
2b7fde34
...
@@ -7,7 +7,7 @@ package ogle
...
@@ -7,7 +7,7 @@ package ogle
import
(
import
(
"debug/gosym"
;
"debug/gosym"
;
"debug/proc"
;
"debug/proc"
;
"eval"
;
"e
xp/e
val"
;
"log"
;
"log"
;
"os"
;
"os"
;
)
)
...
...
src/run.bash
View file @
2b7fde34
...
@@ -26,12 +26,10 @@ maketest() {
...
@@ -26,12 +26,10 @@ maketest() {
maketest
\
maketest
\
pkg
\
pkg
\
../usr/austin/eval
\
# all of these are subtly different
# all of these are subtly different
# from what maketest does.
# from what maketest does.
(
xcd pkg/sync
;
(
xcd pkg/sync
;
make clean
;
make clean
;
time
make
time
make
...
@@ -55,7 +53,18 @@ make clean
...
@@ -55,7 +53,18 @@ make clean
./test.bash
./test.bash
)
||
exit
$?
)
||
exit
$?
(
xcd ../usr/austin/ogle
(
xcd ../usr/r/rpc
make clean
time
make
./chanrun
)
||
exit
$?
(
xcd ../usr/dsymonds/iterable
make clean
time
make
test
)
||
exit
$?
(
xcd pkg/exp/ogle
make clean
make clean
time
make ogle
time
make ogle
)
||
exit
$?
)
||
exit
$?
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment