X7ROOT File Manager
Current Path:
/opt/golang/1.19.4/src/reflect
opt
/
golang
/
1.19.4
/
src
/
reflect
/
π
..
π
abi.go
(14.97 KB)
π
abi_test.go
(26.39 KB)
π
all_test.go
(207.35 KB)
π
asm_386.s
(1.07 KB)
π
asm_amd64.s
(2.76 KB)
π
asm_arm.s
(1.13 KB)
π
asm_arm64.s
(2.77 KB)
π
asm_loong64.s
(1.13 KB)
π
asm_mips64x.s
(1.16 KB)
π
asm_mipsx.s
(1.16 KB)
π
asm_ppc64x.s
(3.31 KB)
π
asm_riscv64.s
(2.58 KB)
π
asm_s390x.s
(1.1 KB)
π
asm_wasm.s
(1.15 KB)
π
deepequal.go
(7.39 KB)
π
example_test.go
(4.53 KB)
π
export_test.go
(3.66 KB)
π
float32reg_generic.go
(681 B)
π
float32reg_ppc64x.s
(838 B)
π
float32reg_riscv64.s
(794 B)
π
internal
π
makefunc.go
(5.9 KB)
π
set_test.go
(5.7 KB)
π
stubs_ppc64x.go
(292 B)
π
stubs_riscv64.go
(263 B)
π
swapper.go
(1.98 KB)
π
tostring_test.go
(2.14 KB)
π
type.go
(87.18 KB)
π
value.go
(107.22 KB)
π
visiblefields.go
(2.97 KB)
π
visiblefields_test.go
(5.27 KB)
Editing: float32reg_ppc64x.s
// Copyright 2021 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. //go:build ppc64 || ppc64le #include "textflag.h" // On PPC64, the float32 becomes a float64 // when loaded in a register, different from // other platforms. These functions are // needed to ensure correct conversions on PPC64. // Convert float32->uint64 TEXT Β·archFloat32ToReg(SB),NOSPLIT,$0-16 FMOVS val+0(FP), F1 FMOVD F1, ret+8(FP) RET // Convert uint64->float32 TEXT Β·archFloat32FromReg(SB),NOSPLIT,$0-12 FMOVD reg+0(FP), F1 // Normally a float64->float32 conversion // would need rounding, but that is not needed // here since the uint64 was originally converted // from float32, and should be avoided to // preserve SNaN values. FMOVS F1, ret+8(FP) RET
Upload File
Create Folder