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

Delta Between Two Patch Sets: src/pkg/runtime/stubs.go

Issue 138740043: code review 138740043: cmd/cc, runtime: preserve C runtime type names in gener... (Closed)
Left Patch Set: diff -r 30698178519cc3125815e08b7119b91c6c6dce13 https://code.google.com/p/go/ Created 10 years, 6 months ago
Right Patch Set: diff -r 14ab6d0208b61ae3aa52a24c89905571e8973d4e https://code.google.com/p/go/ Created 10 years, 6 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:
Left: Side by side diff | Download
Right: Side by side diff | Download
« no previous file with change/comment | « src/pkg/runtime/string.go ('k') | src/pkg/runtime/stubs.goc » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
(Both sides are equal)
1 // Copyright 2014 The Go Authors. All rights reserved. 1 // Copyright 2014 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 runtime 5 package runtime
6 6
7 import "unsafe" 7 import "unsafe"
8 8
9 // Declarations for runtime services implemented in C or assembly. 9 // Declarations for runtime services implemented in C or assembly.
10 // C implementations of these functions are in stubs.goc. 10 // C implementations of these functions are in stubs.goc.
(...skipping 240 matching lines...) Expand 10 before | Expand all | Expand 10 after
251 func atomicor8(ptr *uint8, val uint8) 251 func atomicor8(ptr *uint8, val uint8)
252 252
253 //go:noescape 253 //go:noescape
254 func setcallerpc(argp unsafe.Pointer, pc uintptr) 254 func setcallerpc(argp unsafe.Pointer, pc uintptr)
255 255
256 //go:noescape 256 //go:noescape
257 func getcallerpc(argp unsafe.Pointer) uintptr 257 func getcallerpc(argp unsafe.Pointer) uintptr
258 258
259 //go:noescape 259 //go:noescape
260 func getcallersp(argp unsafe.Pointer) uintptr 260 func getcallersp(argp unsafe.Pointer) uintptr
LEFTRIGHT

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