Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for vavgsh (0.14 sec)

  1. src/cmd/internal/obj/s390x/anames.go

    	"VACC",
    	"VACCB",
    	"VACCH",
    	"VACCF",
    	"VACCG",
    	"VACCQ",
    	"VAC",
    	"VACQ",
    	"VACCC",
    	"VACCCQ",
    	"VN",
    	"VNC",
    	"VAVG",
    	"VAVGB",
    	"VAVGH",
    	"VAVGF",
    	"VAVGG",
    	"VAVGL",
    	"VAVGLB",
    	"VAVGLH",
    	"VAVGLF",
    	"VAVGLG",
    	"VCKSM",
    	"VCEQ",
    	"VCEQB",
    	"VCEQH",
    	"VCEQF",
    	"VCEQG",
    	"VCEQBS",
    	"VCEQHS",
    	"VCEQFS",
    	"VCEQGS",
    	"VCH",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 16:41:03 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/numberlines.go

    	// program execution order, which tends to be true directly after ssa is
    	// first built).
    	if i >= len(b.Values)-1 {
    		return i
    	}
    	// Skip the likely-ephemeral/fragile opcodes expected to vanish in a rewrite.
    	if !isPoorStatementOp(v.Op) {
    		return i
    	}
    	// Look ahead to see what the line number is on the next thing that could be a boundary.
    	for j := i + 1; j < len(b.Values); j++ {
    		u := b.Values[j]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 14 21:26:13 UTC 2023
    - 7.8K bytes
    - Viewed (0)
Back to top