summaryrefslogtreecommitdiffstats
path: root/src/org/jetbrains/java/decompiler/code/instructions/TABLESWITCH.java
blob: 4a4be0a5dc1a087db4e04aefebedf7a0fd63a3c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
package org.jetbrains.java.decompiler.code.instructions;

import java.io.DataOutputStream;
import java.io.IOException;

import org.jetbrains.java.decompiler.code.SwitchInstruction;

public class TABLESWITCH extends SwitchInstruction {

	public void writeToStream(DataOutputStream out, int offset) throws IOException {

		out.writeByte(opc_tableswitch);
		
		int padding = 3 - (offset%4);
		for(int i=0;i<padding;i++){
			out.writeByte(0);
		}
		
		for(int i=0;i<operandsCount();i++) {
			out.writeInt(getOperand(i));
		}
		
	}

	public int length() {
		return 1+operandsCount()*4;
	}
	
}