php小編蘋果在這裡為大家介紹一個關於修改Go語言以使用Gem5 m5ops的方法。 Gem5是一個廣泛使用的模擬器,而m5ops是Gem5中的一組作業系統介面。透過修改Go語言,我們可以使用Gem5的m5ops介面來進行效能分析和除錯。具體的步驟是,在Go的工具鏈中加入對m5ops的支持,然後使用m5ops提供的函數進行效能監測和除錯操作。透過這種方式,我們可以更了解Go語言在模擬環境中的運作情況,並進行相應的最佳化和偵錯工作。
問題內容
我對 golang 還很陌生。
我正在嘗試將一些 c 函數呼叫(特別是 m5ops)插入到 golang 的執行時間(特別是 src/proc.go)。
我嘗試使用 cgo,這導致將此導入添加到 proc.go
的開頭:
// #cgo cflags: -i$(gem5_path)/include -static // #cgo ldflags: -l$(gem5_path)/util/m5/build/x86/out -lm5 // #include <gem5/m5ops.h> import "c"
但是當我嘗試使用 ./all.bash
重建時,腳本輸出然後退出:
./all.bash building go cmd/dist using /usr/local/go. (go1.20.5 linux/amd64) building go toolchain1 using /usr/local/go. building go bootstrap cmd/go (go_bootstrap) using go toolchain1. go tool dist: /home/landerx/goroot/src/runtime/proc.go imports c
上述輸出的更詳細版本:
./all.bash -v Building Go cmd/dist using /usr/local/go. (go1.20.5 linux/amd64) cmd/dist Building Go toolchain1 using /usr/local/go. internal/goarch internal/coverage/rtcov internal/goos internal/race internal/unsafeheader internal/goexperiment unicode runtime/internal/syscall sync/atomic runtime/internal/atomic internal/cpu unicode/utf8 internal/itoa math/bits internal/abi runtime/internal/math runtime/internal/sys bootstrap/internal/goarch bootstrap/internal/goexperiment bootstrap/math/bits encoding bootstrap/internal/unsafeheader bootstrap/internal/platform bootstrap/internal/coverage internal/bytealg bootstrap/internal/abi math unicode/utf16 bootstrap/internal/goversion internal/goversion bootstrap/internal/race bootstrap/cmd/compile/internal/test runtime internal/reflectlite runtime/metrics sync internal/testlog internal/godebug bootstrap/internal/bisect math/rand errors sort bootstrap/sort io internal/oserror internal/safefilepath path strconv bootstrap/strconv syscall bootstrap/container/heap hash text/tabwriter bytes strings hash/adler32 hash/fnv hash/crc32 crypto reflect bootstrap/internal/types/errors go/build/constraint bootstrap/go/build/constraint bufio regexp/syntax html internal/syscall/execenv internal/syscall/unix time regexp context io/fs internal/poll internal/fmtsort bootstrap/internal/saferio encoding/binary os bootstrap/cmd/internal/notsha256 encoding/base64 bootstrap/cmd/internal/sys crypto/md5 bootstrap/internal/lazyregexp internal/lazyregexp path/filepath fmt os/exec log bootstrap/internal/buildcfg flag bootstrap/cmd/internal/src text/scanner bootstrap/cmd/internal/edit bootstrap/cmd/internal/pkgpath go/token bootstrap/compress/flate bootstrap/internal/zstd go/doc/comment bootstrap/debug/dwarf encoding/json runtime/debug bootstrap/math/big bootstrap/cmd/internal/bio net/url go/scanner bootstrap/cmd/internal/objabi bootstrap/cmd/compile/internal/abt bootstrap/cmd/internal/goobj bootstrap/cmd/internal/gcprog bootstrap/cmd/internal/quoted bootstrap/compress/zlib encoding/hex compress/flate go/ast internal/buildcfg internal/goroot bootstrap/cmd/internal/dwarf runtime/trace bootstrap/cmd/internal/archive bootstrap/cmd/internal/obj bootstrap/debug/macho bootstrap/debug/elf bootstrap/debug/pe bootstrap/internal/xcoff bootstrap/cmd/link/internal/dwtest compress/gzip bootstrap/internal/profile runtime/pprof go/doc go/printer go/internal/typeparams go/parser bootstrap/cmd/internal/codesign bootstrap/go/constant bootstrap/internal/pkgbits bootstrap/cmd/compile/internal/syntax bootstrap/cmd/link/internal/benchmark bootstrap/cmd/compile/internal/pgo/internal/graph go/build go/format bootstrap/cmd/cgo bootstrap/cmd/internal/obj/loong64 bootstrap/cmd/internal/obj/mips bootstrap/cmd/internal/obj/wasm bootstrap/cmd/internal/obj/arm bootstrap/cmd/internal/obj/arm64 bootstrap/cmd/internal/obj/s390x bootstrap/cmd/internal/obj/riscv bootstrap/cmd/internal/obj/ppc64 bootstrap/cmd/internal/obj/x86 bootstrap/cmd/asm/internal/flags bootstrap/cmd/compile/internal/base bootstrap/cmd/compile/internal/logopt bootstrap/cmd/asm/internal/lex bootstrap/cmd/link/internal/sym bootstrap/cmd/link/internal/loader bootstrap/cmd/compile/internal/bitvec bootstrap/cmd/compile/internal/types bootstrap/cmd/compile/internal/types2 bootstrap/cmd/link/internal/loadelf bootstrap/cmd/link/internal/loadmacho bootstrap/cmd/link/internal/loadpe bootstrap/cmd/link/internal/loadxcoff bootstrap/cmd/compile/internal/typebits bootstrap/cmd/compile/internal/ir bootstrap/cmd/asm/internal/arch bootstrap/cmd/link/internal/ld bootstrap/cmd/asm/internal/asm bootstrap/cmd/asm bootstrap/cmd/compile/internal/abi bootstrap/cmd/compile/internal/deadcode bootstrap/cmd/compile/internal/typecheck bootstrap/cmd/compile/internal/objw bootstrap/cmd/compile/internal/staticdata bootstrap/cmd/compile/internal/compare bootstrap/cmd/compile/internal/pgo bootstrap/cmd/compile/internal/coverage bootstrap/cmd/compile/internal/loopvar bootstrap/cmd/compile/internal/importer bootstrap/cmd/compile/internal/escape bootstrap/cmd/compile/internal/inline bootstrap/cmd/compile/internal/reflectdata bootstrap/cmd/compile/internal/devirtualize bootstrap/cmd/compile/internal/staticinit bootstrap/cmd/compile/internal/ssa bootstrap/cmd/link/internal/amd64 bootstrap/cmd/link/internal/loong64 bootstrap/cmd/link/internal/arm bootstrap/cmd/link/internal/mips bootstrap/cmd/link/internal/mips64 bootstrap/cmd/link/internal/arm64 bootstrap/cmd/link/internal/ppc64 bootstrap/cmd/link/internal/riscv64 bootstrap/cmd/link/internal/s390x bootstrap/cmd/link/internal/wasm bootstrap/cmd/link/internal/x86 bootstrap/cmd/link bootstrap/cmd/compile/internal/liveness bootstrap/cmd/compile/internal/ssagen bootstrap/cmd/compile/internal/amd64 bootstrap/cmd/compile/internal/arm bootstrap/cmd/compile/internal/arm64 bootstrap/cmd/compile/internal/dwarfgen bootstrap/cmd/compile/internal/loong64 bootstrap/cmd/compile/internal/mips bootstrap/cmd/compile/internal/mips64 bootstrap/cmd/compile/internal/wasm bootstrap/cmd/compile/internal/s390x bootstrap/cmd/compile/internal/riscv64 bootstrap/cmd/compile/internal/ppc64 bootstrap/cmd/compile/internal/walk bootstrap/cmd/compile/internal/x86 bootstrap/cmd/compile/internal/noder bootstrap/cmd/compile/internal/pkginit bootstrap/cmd/compile/internal/gc bootstrap/cmd/compile Building Go bootstrap cmd/go (go_bootstrap) using Go toolchain1. runtime go tool dist: /home/landerx/goroot/src/runtime/proc.go imports C
嘗試了 cgo_enabled=1
標誌,似乎沒有任何區別。
嘗試只運行 make.bash
,似乎沒有任何區別。
我想知道是否是依賴問題,但沒有看到任何與偽包 cgo
相關的訊息,也沒有看到我的 vscode 出現任何錯誤。
解決方法
好吧...最後,讓我來回答這個問題。
為什麼不起作用
經過相當深入的調查,我發現似乎Go(工具dist)不允許在大多數go內部原始檔(連結)
解決辦法
仍然有一些解決方法可以實現該效果,即在 go 中使用 m5ops。
1。透過全域變數傳遞函數指標
你可以在proc.go
中定義全域函數指針,並在你的go應用程式中導入cgo,並將這些全域函數指針指派給你執行m5ops的函數。 不支援呼叫C函數指標,所以需要用golang函數包裝它。
2。去彙編
Go 在其內部原始檔案中使用了大量 Go Asm,以處理堆疊切換等。
另一方面,m5ops 最終將作為單一偽指令內聯。
因此遵循Go Asm 的語法和函數綁定,這發生在asm_amd64.s 和stubs.go a>,可以寫一個包含m5ops指令的asm函數,然後在runtime的任何地方都呼叫它。 go
應該不錯。
其他資訊
- 似乎在
runtime.go
中,當它切換到系統堆疊時,它無法再執行檔案(或套件?)之外的函數,因此如果您嘗試插入這些函數調用,方法1將不起作用寫入將在系統堆疊上運行的程式碼。所以我終於發現了第二種方法。
以上是修改go以使用Gem5 m5ops:go tool dist顯示導入訊息然後退出的詳細內容。更多資訊請關注PHP中文網其他相關文章!

go语言有缩进。在go语言中,缩进直接使用gofmt工具格式化即可(gofmt使用tab进行缩进);gofmt工具会以标准样式的缩进和垂直对齐方式对源代码进行格式化,甚至必要情况下注释也会重新格式化。

go语言叫go的原因:想表达这门语言的运行速度、开发速度、学习速度(develop)都像gopher一样快。gopher是一种生活在加拿大的小动物,go的吉祥物就是这个小动物,它的中文名叫做囊地鼠,它们最大的特点就是挖洞速度特别快,当然可能不止是挖洞啦。

是,TiDB采用go语言编写。TiDB是一个分布式NewSQL数据库;它支持水平弹性扩展、ACID事务、标准SQL、MySQL语法和MySQL协议,具有数据强一致的高可用特性。TiDB架构中的PD储存了集群的元信息,如key在哪个TiKV节点;PD还负责集群的负载均衡以及数据分片等。PD通过内嵌etcd来支持数据分布和容错;PD采用go语言编写。

go语言能编译。Go语言是编译型的静态语言,是一门需要编译才能运行的编程语言。对Go语言程序进行编译的命令有两种:1、“go build”命令,可以将Go语言程序代码编译成二进制的可执行文件,但该二进制文件需要手动运行;2、“go run”命令,会在编译后直接运行Go语言程序,编译过程中会产生一个临时文件,但不会生成可执行文件。

go语言需要编译。Go语言是编译型的静态语言,是一门需要编译才能运行的编程语言,也就说Go语言程序在运行之前需要通过编译器生成二进制机器码(二进制的可执行文件),随后二进制文件才能在目标机器上运行。

删除字符串的方法:1、用TrimSpace()来去除字符串空格;2、用Trim()、TrimLeft()、TrimRight()、TrimPrefix()或TrimSuffix()来去除字符串中全部、左边或右边指定字符串;3、用TrimFunc()、TrimLeftFunc()或TrimRightFunc()来去除全部、左边或右边指定规则字符串。


熱AI工具

Undresser.AI Undress
人工智慧驅動的應用程序,用於創建逼真的裸體照片

AI Clothes Remover
用於從照片中去除衣服的線上人工智慧工具。

Undress AI Tool
免費脫衣圖片

Clothoff.io
AI脫衣器

AI Hentai Generator
免費產生 AI 無盡。

熱門文章

熱工具

MantisBT
Mantis是一個易於部署的基於Web的缺陷追蹤工具,用於幫助產品缺陷追蹤。它需要PHP、MySQL和一個Web伺服器。請查看我們的演示和託管服務。

DVWA
Damn Vulnerable Web App (DVWA) 是一個PHP/MySQL的Web應用程序,非常容易受到攻擊。它的主要目標是成為安全專業人員在合法環境中測試自己的技能和工具的輔助工具,幫助Web開發人員更好地理解保護網路應用程式的過程,並幫助教師/學生在課堂環境中教授/學習Web應用程式安全性。 DVWA的目標是透過簡單直接的介面練習一些最常見的Web漏洞,難度各不相同。請注意,該軟體中

SublimeText3 英文版
推薦:為Win版本,支援程式碼提示!

SAP NetWeaver Server Adapter for Eclipse
將Eclipse與SAP NetWeaver應用伺服器整合。

Dreamweaver Mac版
視覺化網頁開發工具