coins.backend.gen
Class CodeGenerator_mb.MicroBlazeAttr

java.lang.Object
  extended bycoins.backend.gen.CodeGenerator.FunctionAttr
      extended bycoins.backend.gen.CodeGenerator_mb.MicroBlazeAttr
Enclosing class:
CodeGenerator_mb

static class CodeGenerator_mb.MicroBlazeAttr
extends CodeGenerator.FunctionAttr

MicroBlaze's function attribute


Field Summary
(package private)  int calleeSaves
          callee save regsiters
(package private)  int frameSize
          real frame size
(package private)  Function func
          Parent object.
(package private)  int functionParameters
           
(package private)  LirNode hiddenPtr
          pointer of aggregate return value.
(package private)  boolean isVarArg
          True if this is variable argument function.
(package private)  int passedByStack
          Maximum stack space used by call.
(package private)  int requiredStack
          Stack space required for call
(package private)  LirNode retPtr
          Pointer to value returned (if the function returns struct)
(package private)  int stackParamOffset
          Offset of the first non-register parameter (i.e.
 
Constructor Summary
(package private) CodeGenerator_mb.MicroBlazeAttr(Function func)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

passedByStack

int passedByStack
Maximum stack space used by call. (parameters and return address)


functionParameters

int functionParameters

calleeSaves

int calleeSaves
callee save regsiters


hiddenPtr

LirNode hiddenPtr
pointer of aggregate return value.


frameSize

int frameSize
real frame size


func

Function func
Parent object.


requiredStack

int requiredStack
Stack space required for call


isVarArg

boolean isVarArg
True if this is variable argument function.


retPtr

LirNode retPtr
Pointer to value returned (if the function returns struct)


stackParamOffset

int stackParamOffset
Offset of the first non-register parameter (i.e. on stack)

Constructor Detail

CodeGenerator_mb.MicroBlazeAttr

CodeGenerator_mb.MicroBlazeAttr(Function func)