metaonly interface xdc.rov.ICallStack |
 |
 |
 |
A call stack interface (optionally) implementated by ROV servers
Instances of this interface maintain a "local" set of processor
registers sufficient to enable call stack parsing - walking up the C
callstack and determining all nested calls up to the current program
counter (specified by the local registers). This "local" set of
registers is, of course, processor specific and must include both
the program counter ("PC") and a frame pointer (processor-specific
register name).
metaonly interface ICallStack { ...
instance: ...
metaonly interface ICallStack {
instance:
per-instance functions
}
ICallStack.clearRegisters() // instance |
 |
ICallStack.fetchRegisters() // instance |
 |
Void fetchRegisters(String names[]);
ICallStack.getRegister() // instance |
 |
Long getRegister(String name);
ICallStack.setRegister() // instance |
 |
Void setRegister(String name, Long value);
ICallStack.toText() // instance |
 |
generated on Wed, 09 Apr 2014 00:37:38 GMT