summaryrefslogtreecommitdiffstats
path: root/src/org/jetbrains/java/decompiler/code/instructions/LOOKUPSWITCH.java
blob: dbe5f034ed1025ad6cca59a90d16c95e2be293f7 (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
package org.jetbrains.java.decompiler.code.instructions;

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

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

public class LOOKUPSWITCH extends SwitchInstruction {

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

		out.writeByte(opc_lookupswitch);
		
		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;
	}
	
}