- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for BFPT (0.01 sec)
-
src/cmd/asm/internal/asm/testdata/loong64enc1.s
// license that can be found in the LICENSE file. #include "../../../../../runtime/textflag.h" TEXT asmtest(SB),DUPOK|NOSPLIT,$0 lable1: BFPT 1(PC) // 00050048 BFPT lable1 // BFPT 2 // 1ffdff4b BFPT FCC0, lable1 // BFPT FCC0, 2 // 1ff9ff4b BFPT FCC7, lable1 // BFPT FCC7, 2 // fff5ff4b lable2: BFPF 1(PC) // 00040048 BFPF lable2 // BFPF 6 // 1ffcff4b BFPF FCC0, lable2 // BFPF FCC0, 6 // 1ff8ff4b
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Thu Sep 04 19:24:25 UTC 2025 - 35.5K bytes - Viewed (0) -
src/cmd/asm/internal/arch/loong64.go
package arch import ( "cmd/internal/obj" "cmd/internal/obj/loong64" "errors" "fmt" ) func jumpLoong64(word string) bool { switch word { case "BEQ", "BFPF", "BFPT", "BLTZ", "BGEZ", "BLEZ", "BGTZ", "BLT", "BLTU", "JIRL", "BNE", "BGE", "BGEU", "JMP", "JAL", "CALL": return true } return false } // IsLoong64RDTIME reports whether the op (as defined by an loong64.A*
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Tue Aug 05 17:31:25 UTC 2025 - 3.8K bytes - Viewed (0)