public IrResourceOperand(IrResourceType resourceType, int regIndex)
 {
     ResourceType = resourceType;
     IndexId      = regIndex;
 }
 public IrResourceOperand(IrResourceType resourceType, int rangeId, int indexId)
 {
     ResourceType = resourceType;
     RangeId      = rangeId;
     IndexId      = indexId;
 }