Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for intconst (0.29 sec)

  1. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    (ANDconst [c] (MOVDconst [d]))  => (MOVDconst [c&d])
    (ANDconst [c] (ANDconst [d] x)) => (ANDconst [c&d] x)
    (ANDconst [c] (MOVWUreg x)) => (ANDconst [c&(1<<32-1)] x)
    (ANDconst [c] (MOVHUreg x)) => (ANDconst [c&(1<<16-1)] x)
    (ANDconst [c] (MOVBUreg x)) => (ANDconst [c&(1<<8-1)] x)
    (MOVWUreg (ANDconst [c] x)) => (ANDconst [c&(1<<32-1)] x)
    (MOVHUreg (ANDconst [c] x)) => (ANDconst [c&(1<<16-1)] x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewriteMIPS64.go

    		return true
    	}
    	// match: (ANDconst [c] (MOVVconst [d]))
    	// result: (MOVVconst [c&d])
    	for {
    		c := auxIntToInt64(v.AuxInt)
    		if v_0.Op != OpMIPS64MOVVconst {
    			break
    		}
    		d := auxIntToInt64(v_0.AuxInt)
    		v.reset(OpMIPS64MOVVconst)
    		v.AuxInt = int64ToAuxInt(c & d)
    		return true
    	}
    	// match: (ANDconst [c] (ANDconst [d] x))
    	// result: (ANDconst [c&d] x)
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 31 03:59:48 UTC 2023
    - 211.6K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewriteLOONG64.go

    		return true
    	}
    	// match: (ANDconst [c] (MOVVconst [d]))
    	// result: (MOVVconst [c&d])
    	for {
    		c := auxIntToInt64(v.AuxInt)
    		if v_0.Op != OpLOONG64MOVVconst {
    			break
    		}
    		d := auxIntToInt64(v_0.AuxInt)
    		v.reset(OpLOONG64MOVVconst)
    		v.AuxInt = int64ToAuxInt(c & d)
    		return true
    	}
    	// match: (ANDconst [c] (ANDconst [d] x))
    	// result: (ANDconst [c&d] x)
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 19:26:25 UTC 2023
    - 195.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

      // for now for safety and this could be revisited when required.
      return Status(absl::StatusCode::kInvalidArgument, "Unsupported type");
    }
    
    static bool IsConst(Operation* op) {
      return isa<mlir::func::ConstantOp, mlir::arith::ConstantOp, mlir::TF::ConstOp,
                 tfl::ConstOp, tfl::QConstOp, tfl::SparseConstOp,
                 tfl::SparseQConstOp, mlir::TFL::NoValueOp,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
Back to top