Home | History | Annotate | Download | only in Adaptors

Lines Matching refs:instruction

96             RegisterRangeInstruction instruction = (RegisterRangeInstruction)analyzedInstruction.getInstruction();
98 registers.set(instruction.getStartRegister(),
99 instruction.getStartRegister() + instruction.getRegCount());
101 FiveRegisterInstruction instruction = (FiveRegisterInstruction)analyzedInstruction.getInstruction();
102 int regCount = instruction.getRegCount();
105 registers.set(instruction.getRegisterA());
108 registers.set(instruction.getRegisterG());
111 registers.set(instruction.getRegisterF());
114 registers.set(instruction.getRegisterE());
117 registers.set(instruction.getRegisterD());
120 ThreeRegisterInstruction instruction = (ThreeRegisterInstruction)analyzedInstruction.getInstruction();
121 registers.set(instruction.getRegisterA());
122 registers.set(instruction.getRegisterB());
123 registers.set(instruction.getRegisterC());
125 TwoRegisterInstruction instruction = (TwoRegisterInstruction)analyzedInstruction.getInstruction();
126 registers.set(instruction.getRegisterA());
127 registers.set(instruction.getRegisterB());
129 SingleRegisterInstruction instruction = (SingleRegisterInstruction)analyzedInstruction.getInstruction();
130 registers.set(instruction.getRegisterA());
140 //in the common case of an instruction that only has a single predecessor which is the previous
141 //instruction, the pre-instruction registers will always match the previous instruction's
142 //post-instruction registers
218 //the fake "StartOfMethod" instruction