Lines Matching full:stub
203 directly to the C stub because it's expecting to be called with a "glue"
204 argument and then return. We need a C stub "wrapper" that does the
209 <code>dalvik/vm/mterp/myarch/stub.S</code> that contains one line:
211 /* stub for ${opcode} */
216 # source for the instruction table stub
217 asm-stub myarch/stub.S
222 see 256 copies of the stub function in a single large block after the
223 <code>dvmAsmInstructionStart</code> label. The <code>stub.S</code>
231 The actual contents of <code>stub.S</code> are up to you to define.
232 See <code>entry.S</code> and <code>stub.S</code> in the <code>armv5te</code>
278 will see that the <code>OP_NOP</code> stub wrapper has been replaced with our
279 new code in the assembly file, and the C stub implementation is no longer
282 As you implement instructions, the C version and corresponding stub wrapper