Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for getProp3 (0.77 sec)

  1. src/cmd/internal/obj/x86/asm6.go

    				ab.asmvex(ctxt, p.GetFrom3(), &p.To, nil, o.op[z], o.op[z+1])
    				ab.asmando(ctxt, cursym, p, p.GetFrom3(), int(o.op[z+2]))
    				ab.Put1(byte(p.From.Offset))
    
    			case Zvex_i_r_v:
    				ab.asmvex(ctxt, p.GetFrom3(), &p.To, nil, o.op[z], o.op[z+1])
    				regnum := byte(0x7)
    				if p.GetFrom3().Reg >= REG_X0 && p.GetFrom3().Reg <= REG_X15 {
    					regnum &= byte(p.GetFrom3().Reg - REG_X0)
    				} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/link.go

    	Destination
    )
    
    // From3Type returns p.GetFrom3().Type, or TYPE_NONE when
    // p.GetFrom3() returns nil.
    func (p *Prog) From3Type() AddrType {
    	from3 := p.GetFrom3()
    	if from3 == nil {
    		return TYPE_NONE
    	}
    	return from3.Type
    }
    
    // GetFrom3 returns second source operand (the first is Prog.From).
    // The same kinds of operands are saved in order so GetFrom3 actually
    // return the first source operand in p.RestArgs.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/api/services/internal/DefaultBuildServicesRegistryTest.groovy

        }
    
        interface Params extends BuildServiceParameters {
            String getProp()
    
            void setProp(String value)
        }
    
        static abstract class ServiceImpl implements BuildService<Params> {
            static List<ServiceImpl> instances = []
    
            String getProp() {
                return getParameters().prop
            }
    
            static void reset() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:46 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/ppc64/asm9.go

    		v := c.regoff(p.GetFrom3())
    
    		r := int(p.From.Reg)
    		o1 = AOP_IRR(c.opirr(p.As), uint32(p.To.Reg), uint32(r), uint32(v))
    
    	case 28: /* subc r1,$lcon,r2 ==> cau+or+subfc */
    		if p.To.Reg == REGTMP || p.From.Reg == REGTMP {
    			c.ctxt.Diag("can't synthesize large constant\n%v", p)
    		}
    		v := c.vregoff(p.GetFrom3())
    		o1 = AOP_IRR(OP_ADDIS, REGTMP, REGZERO, uint32(v)>>16)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/arm64/asm7.go

    			}
    		}
    		p.From.Class = int8(a1)
    	}
    
    	a2 := C_NONE
    	if p.Reg != 0 {
    		a2 = rclass(p.Reg)
    	}
    
    	a3 := C_NONE
    	if p.GetFrom3() != nil {
    		a3 = int(p.GetFrom3().Class)
    		if a3 == 0 {
    			a3 = c.aclass(p.GetFrom3())
    			p.GetFrom3().Class = int8(a3)
    		}
    	}
    
    	a4 := int(p.To.Class)
    	if a4 == 0 {
    		a4 = c.aclass(&p.To)
    		if p.To.Type == obj.TYPE_MEM {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/s390x/asmz.go

    			c.ctxt.Diag("number of bytes (%v) not in range [1,256]", l)
    		}
    		if p.GetFrom3().Index != 0 || p.To.Index != 0 {
    			c.ctxt.Diag("cannot use index reg")
    		}
    		b1 := p.To.Reg
    		b2 := p.GetFrom3().Reg
    		if b1 == 0 {
    			b1 = REGSP
    		}
    		if b2 == 0 {
    			b2 = REGSP
    		}
    		d1 := c.regoff(&p.To)
    		d2 := c.regoff(p.GetFrom3())
    		if d1 < 0 || d1 >= DISP12 {
    			if b2 == int16(regtmp(p)) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/transforms/dilated_conv.h

      // check values of `paddings` and `crops` to make sure it really stands for
      // a dilated conv.
      auto stb_paddings = stb_op.getPaddings();
      auto bts_crops = bts_op.getCrops();
      ElementsAttr stb_paddings_attr, bts_crops_attr;
      if (!matchPattern(stb_paddings, m_Constant(&stb_paddings_attr)) ||
          !matchPattern(bts_crops, m_Constant(&bts_crops_attr))) {
        return rewriter.notifyMatchFailure(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 20K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/ppc64/obj9.go

    		if p.From.Offset != 0 {
    			q := obj.Appendp(p, c.newprog)
    			q.As = AADD
    			q.From.Type = obj.TYPE_CONST
    			q.From.Offset = p.From.Offset
    			q.To = p.To
    			p.From.Offset = 0
    		}
    	}
    	if p.GetFrom3() != nil && p.GetFrom3().Name == obj.NAME_EXTERN {
    		c.ctxt.Diag("don't know how to handle %v with -dynlink", p)
    	}
    	var source *obj.Addr
    	// MOVx sym, Ry becomes MOVD sym@GOT, REGTMP; MOVx (REGTMP), Ry
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 40.8K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ppc64/ssa.go

    			p.AddRestSourceReg(v.Args[1].Reg())
    		} else {
    			p.AddRestSourceReg(ppc64.REG_R0)
    		}
    		// AuxInt values 4,5,6 implemented with reverse operand order from 0,1,2
    		if v.AuxInt > 3 {
    			p.Reg, p.GetFrom3().Reg = p.GetFrom3().Reg, p.Reg
    		}
    		p.From.SetConst(v.AuxInt & 3)
    
    	case ssa.OpPPC64SETBC, ssa.OpPPC64SETBCR:
    		p := s.Prog(v.Op.Asm())
    		p.To.Type = obj.TYPE_REG
    		p.To.Reg = v.Reg()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

        }
    
        input_shape.assign(input_type.getShape().begin(),
                           input_type.getShape().end());
      }
    
      auto crops_type = mlir::cast<TensorType>(op.getCrops().getType());
      if (crops_type.hasRank()) {
        if (crops_type.getRank() != 2)
          return op.emitOpError()
                 << "requires crops to be a 2D tensor, but got " << crops_type;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
Back to top