scala.tools.nsc.backend.icode.BasicBlocks

BasicBlock

class BasicBlock extends ProgramPoint[ICodes.BasicBlock]

This class represents a basic block. Each basic block contains a list of instructions that are either executed all, or none. No jumps to/from the "middle" of the basic block are allowed (modulo exceptions).

Self Type
ICodes.BasicBlock
Linear Supertypes
Known Subclasses
Type Hierarchy Learn more about scaladoc diagrams
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. BasicBlock
  2. ProgramPoint
  3. AnyRef
  4. Any
Implicitly
  1. by StringAdd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new BasicBlock(label: Int, method: ICodes.IMethod)

Value Members

  1. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. def +(other: String): String

    Implicit information
    This member is added by an implicit conversion from ICodes.BasicBlock to StringAdd[ICodes.BasicBlock] performed by method StringAdd in scala.Predef.
    Definition Classes
    StringAdd
  5. def ->[B](y: B): (ICodes.BasicBlock, B)

    Implicit information
    This member is added by an implicit conversion from ICodes.BasicBlock to ArrowAssoc[ICodes.BasicBlock] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  6. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  7. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  8. def apply(n: Int): ICodes.Instruction

    Return the n-th instruction.

  9. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  10. def blockContents: String

  11. def clear(): Unit

  12. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  13. def close(): Unit

    Close the block

  14. def closeWith(instr: ICodes.Instruction, pos: Global.Position): Unit

  15. def closeWith(instr: ICodes.Instruction): Unit

    do nothing if block is already closed

  16. def closed: Boolean

    Is this block closed?

  17. def closed_=(b: Boolean): Unit

  18. def code: ICodes.Code

  19. def directSuccessors: List[ICodes.BasicBlock]

  20. def emit(is: Seq[ICodes.Instruction]): Unit

  21. def emit(instr: ICodes.Instruction, pos: Global.Position): Unit

    Emitting does not set touched to true.

    Emitting does not set touched to true. During code generation this is a hotspot and setting the flag for each emit is a waste. Caching should happen only after a block is closed, which sets the DIRTYSUCCS flag.

  22. def emit(instr: ICodes.Instruction): Unit

    Add a new instruction at the end of the block, using the same source position as the last emitted instruction

  23. def emitOnly(is: ICodes.Instruction*): Unit

    The semantics of this are a little odd but it's designed to work seamlessly with the existing code.

    The semantics of this are a little odd but it's designed to work seamlessly with the existing code. It emits each supplied instruction, then closes the block. The odd part is that if the instruction has pos == NoPosition, it calls the 1-arg emit, but otherwise it calls the 2-arg emit. This way I could retain existing behavior exactly by calling setPos on any instruction using the two arg version which I wanted to include in a call to emitOnly.

  24. def ensuring(cond: (ICodes.BasicBlock) ⇒ Boolean, msg: ⇒ Any): ICodes.BasicBlock

    Implicit information
    This member is added by an implicit conversion from ICodes.BasicBlock to Ensuring[ICodes.BasicBlock] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  25. def ensuring(cond: (ICodes.BasicBlock) ⇒ Boolean): ICodes.BasicBlock

    Implicit information
    This member is added by an implicit conversion from ICodes.BasicBlock to Ensuring[ICodes.BasicBlock] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  26. def ensuring(cond: Boolean, msg: ⇒ Any): ICodes.BasicBlock

    Implicit information
    This member is added by an implicit conversion from ICodes.BasicBlock to Ensuring[ICodes.BasicBlock] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  27. def ensuring(cond: Boolean): ICodes.BasicBlock

    Implicit information
    This member is added by an implicit conversion from ICodes.BasicBlock to Ensuring[ICodes.BasicBlock] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  28. def enterIgnoreMode(): Unit

    Enter ignore mode: new 'emit'ted instructions will not be added to this basic block.

    Enter ignore mode: new 'emit'ted instructions will not be added to this basic block. It makes the generation of THROW and RETURNs easier.

  29. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  30. def equals(other: Any): Boolean

    Definition Classes
    BasicBlock → AnyRef → Any
  31. def exceptionHandlerStart: Boolean

    Is this block the start block of an exception handler?

    Is this block the start block of an exception handler?

    Definition Classes
    BasicBlockProgramPoint
  32. def exceptionHandlerStart_=(b: Boolean): Unit

  33. def exceptionSuccessors: List[ICodes.BasicBlock]

  34. def exceptionSuccessorsForBlock(block: ICodes.BasicBlock): List[ICodes.BasicBlock]

  35. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  36. def flagsString: String

  37. final def foreach[U](f: (ICodes.Instruction) ⇒ U): Unit

    Apply a function to all the instructions of the block.

  38. def formatted(fmtstr: String): String

    Implicit information
    This member is added by an implicit conversion from ICodes.BasicBlock to StringFormat[ICodes.BasicBlock] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  39. def fromList(is: List[ICodes.Instruction]): Unit

  40. def fullString: String

  41. def getArray: Array[ICodes.Instruction]

    return the underlying array of instructions

  42. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  43. def hasFlag(flag: Int): Boolean

    Does this block have the given flag?

  44. def hashCode(): Int

    Definition Classes
    BasicBlock → AnyRef → Any
  45. def ignore: Boolean

    When set, the emit methods will be ignored.

  46. def ignore_=(b: Boolean): Unit

  47. def indexOf(inst: ICodes.Instruction): Int

    Return the index of inst.

    Return the index of inst. Uses reference equality. Returns -1 if not found.

  48. final def isEmpty: Boolean

  49. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  50. def iterator: Iterator[ICodes.Instruction]

    Return an iterator over the instructions in this basic block.

  51. def killIf(cond: Boolean): Unit

    if cond is true, closes this block, entersIgnoreMode, and removes the block from its list of blocks.

    if cond is true, closes this block, entersIgnoreMode, and removes the block from its list of blocks. Used to allow a block to be started and then cancelled when it is discovered to be unreachable.

  52. def killUnless(cond: Boolean): Unit

    Same as killIf but with the logic of the condition reversed

  53. val label: Int

  54. def lastInstruction: ICodes.Instruction

    Return the last instruction of this basic block.

  55. def length: Int

    The number of instructions in this basic block so far.

  56. def loopHeader: Boolean

    Is this block the head of a while?

  57. def loopHeader_=(b: Boolean): Unit

  58. val method: ICodes.IMethod

  59. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  60. final def nonEmpty: Boolean

  61. final def notify(): Unit

    Definition Classes
    AnyRef
  62. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  63. def open(): Unit

  64. def predContents: String

  65. def predecessors: List[ICodes.BasicBlock]

    Returns the predecessors of this block.

    Returns the predecessors of this block.

    Definition Classes
    BasicBlockProgramPoint
  66. var preds: List[ICodes.BasicBlock]

    Cached predecessors.

  67. def removeInstructionsAt(positions: Int*): Unit

    Removes instructions found at the given positions.

  68. def removeLastInstruction(): Unit

    Remove the last instruction of this basic block.

    Remove the last instruction of this basic block. It is fast for an open block, but slower when the block is closed.

  69. def replaceInstruction(oldInstr: ICodes.Instruction, is: List[ICodes.Instruction]): Boolean

    Replaces oldInstr with is.

    Replaces oldInstr with is. It does not update the position field in the newly inserted instructions, so it behaves differently than the one-instruction versions of this function.

  70. def replaceInstruction(oldInstr: ICodes.Instruction, newInstr: ICodes.Instruction): Boolean

    Replace the given instruction with the new one.

    Replace the given instruction with the new one. Returns true if it actually changed something. The replacing instruction is given the nsc.util.Position of the instruction it replaces.

  71. def replaceInstruction(pos: Int, instr: ICodes.Instruction): Boolean

    Replace the instruction at the given position.

    Replace the instruction at the given position. Used by labels when they are anchored. The replacing instruction is given the nsc.util.Position of the instruction it replaces.

  72. def size: Int

  73. def subst(map: Map[ICodes.Instruction, ICodes.Instruction]): Unit

    Replaces all instructions found in the map.

  74. def succContents: String

  75. def successors: List[ICodes.BasicBlock]

    Definition Classes
    BasicBlockProgramPoint
  76. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  77. def take(n: Int): Seq[ICodes.Instruction]

  78. def toList: List[ICodes.Instruction]

  79. def toString(): String

    Definition Classes
    BasicBlock → AnyRef → Any
  80. def touched: Boolean

    Has this basic block been modified since the last call to 'successors'?

  81. def touched_=(b: Boolean): Unit

  82. val varsInScope: Set[ICodes.Local]

    Local variables that are in scope at entry of this basic block.

    Local variables that are in scope at entry of this basic block. Used for debugging information.

  83. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  84. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  85. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  86. def [B](y: B): (ICodes.BasicBlock, B)

    Implicit information
    This member is added by an implicit conversion from ICodes.BasicBlock to ArrowAssoc[ICodes.BasicBlock] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion StringAdd from ICodes.BasicBlock to StringAdd[ICodes.BasicBlock]

Inherited by implicit conversion StringFormat from ICodes.BasicBlock to StringFormat[ICodes.BasicBlock]

Inherited by implicit conversion Ensuring from ICodes.BasicBlock to Ensuring[ICodes.BasicBlock]

Inherited by implicit conversion ArrowAssoc from ICodes.BasicBlock to ArrowAssoc[ICodes.BasicBlock]

Ungrouped