scala.tools.nsc.backend.icode.BasicBlocks

NoBasicBlock

object NoBasicBlock extends ICodes.BasicBlock

Linear Supertypes
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. NoBasicBlock
  2. BasicBlock
  3. ProgramPoint
  4. AnyRef
  5. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

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. final def ==(arg0: AnyRef): Boolean

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

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

    Return the n-th instruction.

    Return the n-th instruction.

    Definition Classes
    BasicBlock
  7. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  8. def blockContents: String

    Definition Classes
    BasicBlock
  9. def clear(): Unit

    Definition Classes
    BasicBlock
  10. def clone(): AnyRef

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

    Close the block

    Close the block

    Definition Classes
    BasicBlock
  12. def closeWith(instr: ICodes.Instruction, pos: Global.Position): Unit

    Definition Classes
    BasicBlock
  13. def closeWith(instr: ICodes.Instruction): Unit

    do nothing if block is already closed

    do nothing if block is already closed

    Definition Classes
    BasicBlock
  14. def closed: Boolean

    Is this block closed?

    Is this block closed?

    Definition Classes
    BasicBlock
  15. def closed_=(b: Boolean): Unit

    Definition Classes
    BasicBlock
  16. def code: ICodes.Code

    Definition Classes
    BasicBlock
  17. def directSuccessors: List[ICodes.BasicBlock]

    Definition Classes
    BasicBlock
  18. def emit(is: Seq[ICodes.Instruction]): Unit

    Definition Classes
    BasicBlock
  19. 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.

    Definition Classes
    BasicBlock
  20. 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

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

    Definition Classes
    BasicBlock
  21. 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.

    Definition Classes
    BasicBlock
  22. 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.

    Definition Classes
    BasicBlock
  23. final def eq(arg0: AnyRef): Boolean

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

    Definition Classes
    BasicBlock → AnyRef → Any
  25. 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
  26. def exceptionHandlerStart_=(b: Boolean): Unit

    Definition Classes
    BasicBlock
  27. def exceptionSuccessors: List[ICodes.BasicBlock]

    Definition Classes
    BasicBlock
  28. def exceptionSuccessorsForBlock(block: ICodes.BasicBlock): List[ICodes.BasicBlock]

    Definition Classes
    BasicBlock
  29. def finalize(): Unit

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

    Definition Classes
    BasicBlock
  31. final def foreach[U](f: (ICodes.Instruction) ⇒ U): Unit

    Apply a function to all the instructions of the block.

    Apply a function to all the instructions of the block.

    Definition Classes
    BasicBlock
  32. def fromList(is: List[ICodes.Instruction]): Unit

    Definition Classes
    BasicBlock
  33. def fullString: String

    Definition Classes
    BasicBlock
  34. def getArray: Array[ICodes.Instruction]

    return the underlying array of instructions

    return the underlying array of instructions

    Definition Classes
    BasicBlock
  35. final def getClass(): Class[_]

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

    Does this block have the given flag?

    Does this block have the given flag?

    Definition Classes
    BasicBlock
  37. def hashCode(): Int

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

    When set, the emit methods will be ignored.

    When set, the emit methods will be ignored.

    Definition Classes
    BasicBlock
  39. def ignore_=(b: Boolean): Unit

    Definition Classes
    BasicBlock
  40. def indexOf(inst: ICodes.Instruction): Int

    Return the index of inst.

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

    Definition Classes
    BasicBlock
  41. final def isEmpty: Boolean

    Definition Classes
    BasicBlock
  42. final def isInstanceOf[T0]: Boolean

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

    Return an iterator over the instructions in this basic block.

    Return an iterator over the instructions in this basic block.

    Definition Classes
    BasicBlock
  44. 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.

    Definition Classes
    BasicBlock
  45. def killUnless(cond: Boolean): Unit

    Same as killIf but with the logic of the condition reversed

    Same as killIf but with the logic of the condition reversed

    Definition Classes
    BasicBlock
  46. val label: Int

    Definition Classes
    BasicBlock
  47. def lastInstruction: ICodes.Instruction

    Return the last instruction of this basic block.

    Return the last instruction of this basic block.

    Definition Classes
    BasicBlock
  48. def length: Int

    The number of instructions in this basic block so far.

    The number of instructions in this basic block so far.

    Definition Classes
    BasicBlock
  49. def loopHeader: Boolean

    Is this block the head of a while?

    Is this block the head of a while?

    Definition Classes
    BasicBlock
  50. def loopHeader_=(b: Boolean): Unit

    Definition Classes
    BasicBlock
  51. val method: ICodes.IMethod

    Definition Classes
    BasicBlock
  52. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  53. final def nonEmpty: Boolean

    Definition Classes
    BasicBlock
  54. final def notify(): Unit

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

    Definition Classes
    AnyRef
  56. def open(): Unit

    Definition Classes
    BasicBlock
  57. def predContents: String

    Definition Classes
    BasicBlock
  58. def predecessors: List[ICodes.BasicBlock]

    Returns the predecessors of this block.

    Returns the predecessors of this block.

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

    Cached predecessors.

    Cached predecessors.

    Definition Classes
    BasicBlock
  60. def removeInstructionsAt(positions: Int*): Unit

    Removes instructions found at the given positions.

    Removes instructions found at the given positions.

    Definition Classes
    BasicBlock
  61. 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.

    Definition Classes
    BasicBlock
  62. 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.

    Definition Classes
    BasicBlock
  63. 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.

    Definition Classes
    BasicBlock
  64. 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.

    Definition Classes
    BasicBlock
  65. def size: Int

    Definition Classes
    BasicBlock
  66. def subst(map: Map[ICodes.Instruction, ICodes.Instruction]): Unit

    Replaces all instructions found in the map.

    Replaces all instructions found in the map.

    Definition Classes
    BasicBlock
  67. def succContents: String

    Definition Classes
    BasicBlock
  68. def successors: List[ICodes.BasicBlock]

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

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

    Definition Classes
    BasicBlock
  71. def toList: List[ICodes.Instruction]

    Definition Classes
    BasicBlock
  72. def toString(): String

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

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

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

    Definition Classes
    BasicBlock
  74. def touched_=(b: Boolean): Unit

    Definition Classes
    BasicBlock
  75. 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.

    Definition Classes
    BasicBlock
  76. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from ICodes.BasicBlock

Inherited from AnyRef

Inherited from Any

Ungrouped