/QingTingFanBianYi/src/com/alibaba/fastjson/asm/Label.java

https://gitlab.com/qt-prometheus/qt-prometheus · Java · 71 lines · 62 code · 5 blank · 4 comment · 6 complexity · 08732081a6862cb3afc2b5c962e1bc20 MD5 · raw file

  1. package com.alibaba.fastjson.asm;
  2. public class Label
  3. {
  4. static final int RESOLVED = 2;
  5. public Object info;
  6. int inputStackTop;
  7. int line;
  8. Label next;
  9. int outputStackMax;
  10. int position;
  11. private int referenceCount;
  12. private int[] srcAndRefPositions;
  13. int status;
  14. Label successor;
  15. private void addReference(int paramInt1, int paramInt2)
  16. {
  17. if (this.srcAndRefPositions == null)
  18. this.srcAndRefPositions = new int[6];
  19. if (this.referenceCount >= this.srcAndRefPositions.length)
  20. {
  21. arrayOfInt = new int[this.srcAndRefPositions.length + 6];
  22. System.arraycopy(this.srcAndRefPositions, 0, arrayOfInt, 0, this.srcAndRefPositions.length);
  23. this.srcAndRefPositions = arrayOfInt;
  24. }
  25. int[] arrayOfInt = this.srcAndRefPositions;
  26. int i = this.referenceCount;
  27. this.referenceCount = (i + 1);
  28. arrayOfInt[i] = paramInt1;
  29. arrayOfInt = this.srcAndRefPositions;
  30. paramInt1 = this.referenceCount;
  31. this.referenceCount = (paramInt1 + 1);
  32. arrayOfInt[paramInt1] = paramInt2;
  33. }
  34. void put(MethodWriter paramMethodWriter, ByteVector paramByteVector, int paramInt)
  35. {
  36. if ((this.status & 0x2) == 0)
  37. {
  38. addReference(paramInt, paramByteVector.length);
  39. paramByteVector.putShort(-1);
  40. return;
  41. }
  42. paramByteVector.putShort(this.position - paramInt);
  43. }
  44. void resolve(MethodWriter paramMethodWriter, int paramInt, byte[] paramArrayOfByte)
  45. {
  46. this.status |= 2;
  47. this.position = paramInt;
  48. int i = 0;
  49. while (i < this.referenceCount)
  50. {
  51. paramMethodWriter = this.srcAndRefPositions;
  52. int j = i + 1;
  53. int k = paramMethodWriter[i];
  54. paramMethodWriter = this.srcAndRefPositions;
  55. i = j + 1;
  56. j = paramMethodWriter[j];
  57. k = paramInt - k;
  58. paramArrayOfByte[j] = ((byte)(k >>> 8));
  59. paramArrayOfByte[(j + 1)] = ((byte)k);
  60. }
  61. }
  62. }
  63. /* Location: C:\Users\User\dex2jar-2.0\dex\qting\classes-dex2jar.jar
  64. * Qualified Name: com.alibaba.fastjson.asm.Label
  65. * JD-Core Version: 0.6.2
  66. */