Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for SRADCC (0.21 sec)

  1. test/fixedbugs/issue11987.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 11987. The ppc64 SRADCC instruction was misassembled in a way
    // lost bit 5 of the immediate so v>>32 was assembled as v>>0.  SRADCC
    // is only ever inserted by peep so it's hard to be sure when it will
    // be used. This formulation worked when the bug was fixed.
    
    package main
    
    import "fmt"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 621 bytes
    - Viewed (0)
  2. src/cmd/internal/obj/ppc64/anames.go

    	"RLDICLCC",
    	"RLDIC",
    	"RLDICCC",
    	"CLRLSLDI",
    	"ROTL",
    	"ROTLW",
    	"SLBIA",
    	"SLBIE",
    	"SLBMFEE",
    	"SLBMFEV",
    	"SLBMTE",
    	"SLD",
    	"SLDCC",
    	"SRD",
    	"SRAD",
    	"SRADCC",
    	"SRDCC",
    	"EXTSWSLI",
    	"EXTSWSLICC",
    	"STDCCC",
    	"TD",
    	"SETB",
    	"DWORD",
    	"REMD",
    	"REMDU",
    	"HRFID",
    	"POPCNTD",
    	"POPCNTW",
    	"POPCNTB",
    	"CNTTZW",
    	"CNTTZWCC",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 18:50:29 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/plan9.go

    		return true
    	case OR, ORCC, ORC, ORCCC, AND, ANDCC, ANDC, ANDCCC, XOR, XORCC, NAND, NANDCC, EQV, EQVCC, NOR, NORCC:
    		return true
    	case SLW, SLWCC, SLD, SLDCC, SRW, SRAW, SRWCC, SRAWCC, SRD, SRDCC, SRAD, SRADCC:
    		return true
    	}
    	return false
    }
    
    // revCondMap maps a conditional register bit to its inverse, if possible.
    var revCondMap = map[string]string{
    	"LT": "GE", "GT": "LE", "EQ": "NE",
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 10.9K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/tables.go

    	RLDCL
    	RLDCLCC
    	RLDCR
    	RLDCRCC
    	RLDIC
    	RLDICCC
    	RLDICL
    	RLDICLCC
    	RLDICR
    	RLDICRCC
    	RLDIMI
    	RLDIMICC
    	SC
    	SLBIA
    	SLBIE
    	SLD
    	SLDCC
    	SRAD
    	SRADCC
    	SRADI
    	SRADICC
    	SRD
    	SRDCC
    	STD
    	STDCXCC
    	STDU
    	STDUX
    	STDX
    	STFIWX
    	STWCXCC
    	SUBF
    	SUBFCC
    	SUBFO
    	SUBFOCC
    	TD
    	TDI
    	TLBSYNC
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 334.7K bytes
    - Viewed (0)
Back to top