X7ROOT File Manager
Current Path:
/opt/golang/1.19.4/test/codegen
opt
/
golang
/
1.19.4
/
test
/
codegen
/
📁
..
📄
README
(5.21 KB)
📄
addrcalc.go
(324 B)
📄
alloc.go
(902 B)
📄
arithmetic.go
(14.63 KB)
📄
bitfield.go
(9.64 KB)
📄
bits.go
(5.95 KB)
📄
bmi.go
(2.19 KB)
📄
bool.go
(705 B)
📄
clobberdead.go
(1.31 KB)
📄
clobberdeadreg.go
(1.29 KB)
📄
compare_and_branch.go
(3.79 KB)
📄
comparisons.go
(11.79 KB)
📄
condmove.go
(5.3 KB)
📄
copy.go
(3.36 KB)
📄
floats.go
(3.21 KB)
📄
fuse.go
(4.79 KB)
📄
issue22703.go
(5.43 KB)
📄
issue25378.go
(445 B)
📄
issue31618.go
(504 B)
📄
issue33580.go
(459 B)
📄
issue38554.go
(355 B)
📄
issue42610.go
(673 B)
📄
issue48054.go
(464 B)
📄
issue52635.go
(655 B)
📄
logic.go
(815 B)
📄
mapaccess.go
(9.21 KB)
📄
maps.go
(3.1 KB)
📄
math.go
(6.12 KB)
📄
mathbits.go
(18.06 KB)
📄
memcombine.go
(24 KB)
📄
memops.go
(11.65 KB)
📄
noextend.go
(4.8 KB)
📄
race.go
(651 B)
📄
regabi_regalloc.go
(494 B)
📄
retpoline.go
(224 B)
📄
rotate.go
(5.43 KB)
📄
select.go
(373 B)
📄
shift.go
(9.15 KB)
📄
shortcircuit.go
(368 B)
📄
slices.go
(8.09 KB)
📄
smallintiface.go
(500 B)
📄
spectre.go
(722 B)
📄
stack.go
(2.96 KB)
📄
strings.go
(2.08 KB)
📄
structs.go
(887 B)
📄
switch.go
(1.13 KB)
📄
zerosize.go
(650 B)
Editing: structs.go
// asmcheck // Copyright 2018 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package codegen // This file contains code generation tests related to the handling of // struct types. // ------------- // // Zeroing // // ------------- // type Z1 struct { a, b, c int } func Zero1(t *Z1) { // Issue #18370 // amd64:`MOVUPS\tX[0-9]+, \(.*\)`,`MOVQ\t\$0, 16\(.*\)` *t = Z1{} } type Z2 struct { a, b, c *int } func Zero2(t *Z2) { // amd64:`MOVUPS\tX[0-9]+, \(.*\)`,`MOVQ\t\$0, 16\(.*\)` // amd64:`.*runtime[.]gcWriteBarrier.*\(SB\)` *t = Z2{} } // ------------------ // // Initializing // // ------------------ // type I1 struct { a, b, c, d int } func Init1(p *I1) { // Issue #18872 // amd64:`MOVQ\t[$]1`,`MOVQ\t[$]2`,`MOVQ\t[$]3`,`MOVQ\t[$]4` *p = I1{1, 2, 3, 4} }
Upload File
Create Folder