Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(430)

Side by Side Diff: src/cmd/gc/runtime.go

Issue 157106: x[lo:] (Closed)
Patch Set: code review 157106: x[lo:] - gc and runtime. Created 15 years, 4 months ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/cmd/gc/go.y ('k') | src/cmd/gc/typecheck.c » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2009 The Go Authors. All rights reserved. 1 // Copyright 2009 The Go Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style 2 // Use of this source code is governed by a BSD-style
3 // license that can be found in the LICENSE file. 3 // license that can be found in the LICENSE file.
4 4
5 package PACKAGE 5 package PACKAGE
6 6
7 // emitted by compiler, not referred to by go programs 7 // emitted by compiler, not referred to by go programs
8 8
9 func mal(int32) *any 9 func mal(int32) *any
10 func throwindex() 10 func throwindex()
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 func closechan(hchan any) 72 func closechan(hchan any)
73 func closedchan(hchan any) bool 73 func closedchan(hchan any) bool
74 74
75 func newselect(size int) (sel *byte) 75 func newselect(size int) (sel *byte)
76 func selectsend(sel *byte, hchan chan<- any, elem any) (selected bool) 76 func selectsend(sel *byte, hchan chan<- any, elem any) (selected bool)
77 func selectrecv(sel *byte, hchan <-chan any, elem *any) (selected bool) 77 func selectrecv(sel *byte, hchan <-chan any, elem *any) (selected bool)
78 func selectdefault(sel *byte) (selected bool) 78 func selectdefault(sel *byte) (selected bool)
79 func selectgo(sel *byte) 79 func selectgo(sel *byte)
80 80
81 func makeslice(nel int, cap int, width int) (ary []any) 81 func makeslice(nel int, cap int, width int) (ary []any)
82 func sliceslice1(old []any, lb int, width int) (ary []any)
82 func sliceslice(old []any, lb int, hb int, width int) (ary []any) 83 func sliceslice(old []any, lb int, hb int, width int) (ary []any)
83 func slicearray(old *any, nel int, lb int, hb int, width int) (ary []any) 84 func slicearray(old *any, nel int, lb int, hb int, width int) (ary []any)
84 func arraytoslice(old *any, nel int) (ary []any)
85 85
86 func closure() // has args, but compiler fills in 86 func closure() // has args, but compiler fills in
87 87
88 // only used on 32-bit 88 // only used on 32-bit
89 func int64div(int64, int64) int64 89 func int64div(int64, int64) int64
90 func uint64div(uint64, uint64) uint64 90 func uint64div(uint64, uint64) uint64
91 func int64mod(int64, int64) int64 91 func int64mod(int64, int64) int64
92 func uint64mod(uint64, uint64) uint64 92 func uint64mod(uint64, uint64) uint64
93 func float64toint64(float64) int64 93 func float64toint64(float64) int64
94 func int64tofloat64(int64) float64 94 func int64tofloat64(int64) float64
OLDNEW
« no previous file with comments | « src/cmd/gc/go.y ('k') | src/cmd/gc/typecheck.c » ('j') | no next file with comments »

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b