coins.backend.gen
Class CodeGenerator_thumb.ThumbAttr

java.lang.Object
  extended bycoins.backend.gen.CodeGenerator.FunctionAttr
      extended bycoins.backend.gen.CodeGenerator_thumb.ThumbAttr
Enclosing class:
CodeGenerator_thumb

static class CodeGenerator_thumb.ThumbAttr
extends CodeGenerator.FunctionAttr

Arm's function attribute


Field Summary
(package private)  int adjustCalleeSaves
          callee save register
(package private)  boolean allocaUsed
           
(package private)  Function func
          Parent object.
(package private)  LirNode hiddenPtr
          pointer of aggregate return value.
(package private)  boolean isVarArg
          True if this is variable argument function.
(package private)  int pretend
          pretend value.
(package private)  int pretend2
           
(package private)  boolean regSaved
           
(package private)  int requiredStack
          Stack space required for call
(package private)  boolean requireFp
           
(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.
(package private)  int stackRequired
          Maximum stack space used by call.
(package private)  boolean variadic
          is variadic ?
 
Constructor Summary
(package private) CodeGenerator_thumb.ThumbAttr(Function func)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

stackRequired

int stackRequired
Maximum stack space used by call.


pretend

int pretend
pretend value.


pretend2

int pretend2

hiddenPtr

LirNode hiddenPtr
pointer of aggregate return value.


variadic

boolean variadic
is variadic ?


adjustCalleeSaves

int adjustCalleeSaves
callee save register


requireFp

boolean requireFp

allocaUsed

boolean allocaUsed

regSaved

boolean regSaved

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_thumb.ThumbAttr

CodeGenerator_thumb.ThumbAttr(Function func)