Files
llgo/internal/runtime/z_print.go

88 lines
1.8 KiB
Go
Raw Normal View History

/*
* Copyright (c) 2024 The GoPlus Authors (goplus.org). All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
2024-05-20 21:32:10 +08:00
package runtime
import (
"unsafe"
"github.com/goplus/llgo/c"
2024-05-20 21:32:10 +08:00
)
func PrintByte(v byte) {
c.Fputc(c.Int(v), c.Stderr)
}
func PrintBool(v bool) {
if v {
c.Fprintf(c.Stderr, c.Str("true"))
} else {
c.Fprintf(c.Stderr, c.Str("false"))
}
}
func PrintFloat(v float64) {
2024-05-20 22:27:33 +08:00
switch {
2024-05-20 21:32:10 +08:00
case v != v:
c.Fprintf(c.Stderr, c.Str("NaN"))
return
2024-05-20 22:27:33 +08:00
case v+v == v && v != 0:
2024-05-20 21:32:10 +08:00
if v > 0 {
c.Fprintf(c.Stderr, c.Str("+Inf"))
2024-05-20 22:27:33 +08:00
} else {
2024-05-20 21:32:10 +08:00
c.Fprintf(c.Stderr, c.Str("-Inf"))
}
return
}
2024-06-20 15:52:56 +08:00
c.Fprintf(c.Stderr, c.Str("%+e"), v)
2024-05-20 21:32:10 +08:00
}
2024-06-20 15:52:56 +08:00
func PrintComplex(v complex128) {
print("(", real(v), imag(v), "i)")
}
2024-05-20 21:32:10 +08:00
func PrintUint(v uint64) {
c.Fprintf(c.Stderr, c.Str("%llu"), v)
}
func PrintInt(v int64) {
c.Fprintf(c.Stderr, c.Str("%lld"), v)
}
func PrintHex(v uint64) {
c.Fprintf(c.Stderr, c.Str("%llx"), v)
}
func PrintPointer(p unsafe.Pointer) {
c.Fprintf(c.Stderr, c.Str("%p"), p)
}
func PrintString(s String) {
c.Fwrite(s.data, 1, uintptr(s.len), c.Stderr)
}
func PrintSlice(s Slice) {
print("[", s.len, "/", s.cap, "]", s.data)
}
func PrintEface(e Eface) {
print("(", e._type, ",", e.data, ")")
2024-05-20 21:32:10 +08:00
}
2024-05-27 09:56:42 +08:00
func PrintIface(i Iface) {
print("(", i.tab, ",", i.data, ")")
}