summaryrefslogtreecommitdiffstats
path: root/src/de/fernflower/code/instructions/TABLESWITCH.java
blob: e75ec4c17422e124dd75141a4f6676adde7387ed (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 de.fernflower.code.instructions;

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

import de.fernflower.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;
	}
	
}