Esempio n. 1
0
  protected void generateSelf_set(MemberRef[] fields) {
    MethodBuilder builder =
        new MethodBuilder(
            _context,
            _ce,
            Modifiers.PUBLIC,
            Void.TYPE,
            SELFSET_METHODNAME,
            new Class[] {String.class, Object.class},
            null);

    for (int fieldIdx = 0; fieldIdx < fields.length; fieldIdx++) {
      generateSelfSetFieldCase(builder, fieldIdx, fields[fieldIdx]);
    }

    Type superType = _ce.superclass();
    if (instrumentedType(superType)) {
      builder.aload(0);
      builder.aload(1);
      builder.aload(2);
      builder.invokeSpecial(
          superType, SELFSET_METHODNAME, new Type[] {Type.STRING, Type.OBJECT}, Type.VOID);

    } else {
      builder.ldc(null);
    }

    builder.returnInstruction();
    builder.commit();
  }
Esempio n. 2
0
 private void generateSelfGetMethodCase(MethodBuilder builder, int labelIdx, MemberRef field) {
   Class wrapper = null;
   if (field.type().isPrimitive()) {
     wrapper = PrimitiveUtil.wrapper(field.type());
   }
   builder.aload(1);
   builder.ldc(field.name());
   builder.invokeVirtual(
       Type.STRING, BloatJ2MEContext.EQUALS_METHODNAME, new Type[] {Type.OBJECT}, Type.BOOLEAN);
   builder.ifeq(labelIdx + 1);
   if (wrapper != null) {
     builder.newRef(wrapper);
     builder.dup();
   }
   builder.aload(0);
   builder.getfield(field);
   if (wrapper != null) {
     builder.invokeSpecial(
         _context.getType(wrapper),
         BloatJ2MEContext.INIT_METHODNAME,
         new Type[] {field.type()},
         Type.VOID);
   }
   builder.areturn();
   builder.label(labelIdx + 1);
 }
Esempio n. 3
0
  private void generateSelfSetFieldCase(MethodBuilder builder, int labelIdx, MemberRef field) {
    Type fieldType = field.type();

    Class wrapper = PrimitiveUtil.wrapper(fieldType);
    builder.aload(1);
    builder.ldc(field.name());
    builder.invokeVirtual(
        Type.STRING, BloatJ2MEContext.EQUALS_METHODNAME, new Type[] {Type.OBJECT}, Type.BOOLEAN);
    builder.ifeq(labelIdx + 1);
    builder.aload(0);
    builder.aload(2);
    if (wrapper != null) {
      builder.checkcast(wrapper);
      builder.invokeVirtual(
          _context.getType(wrapper),
          PrimitiveUtil.conversionFunctionName(wrapper),
          new Type[0],
          fieldType);
    } else {
      builder.checkcast(fieldType);
    }
    builder.putfield(field);
    builder.returnInstruction();
    builder.label(labelIdx + 1);
  }