Uses of Class
org.jikesrvm.compilers.opt.OptimizingCompilerException

Packages that use OptimizingCompilerException
org.jikesrvm.compilers.common   
org.jikesrvm.compilers.opt   
org.jikesrvm.compilers.opt.controlflow   
org.jikesrvm.compilers.opt.regalloc   
 

Uses of OptimizingCompilerException in org.jikesrvm.compilers.common
 

Methods in org.jikesrvm.compilers.common that throw OptimizingCompilerException
private static CompiledMethod RuntimeCompiler.optCompile(NormalMethod method, CompilationPlan plan)
          Attempt to compile the passed method with the Compiler.
 

Uses of OptimizingCompilerException in org.jikesrvm.compilers.opt
 

Subclasses of OptimizingCompilerException in org.jikesrvm.compilers.opt
 class MagicNotImplementedException
          Use this exception when the opt compiler attempts to compile an unsupported magic.
 class OperationNotImplementedException
          Use this exception when the opt compiler attempts to compile/optimize a method containing a currently unsupported (but expected) operation.
 

Methods in org.jikesrvm.compilers.opt that throw OptimizingCompilerException
static void OptimizingCompilerException.TODO()
          Incomplete function in IA32 port.
static void OptimizingCompilerException.TODO(String module)
          Incomplete function in IA32 port.
static void OptimizingCompilerException.UNREACHABLE()
          Use the UNREACHABLE methods to mark code that should never execute eg, unexpected cases of switch statments and nested if/then/else
static void OptimizingCompilerException.UNREACHABLE(String module)
          Use the UNREACHABLE methods to mark code that should never execute e.g., unexpected cases of switch statements and nested if/then/else
static void OptimizingCompilerException.UNREACHABLE(String module, String err1)
          Use the UNREACHABLE methods to mark code that should never execute e.g., unexpected cases of switch statements and nested if/then/else
static void OptimizingCompilerException.UNREACHABLE(String module, String err1, String err2)
          Use the UNREACHABLE methods to mark code that should never execute e.g., unexpected cases of switch statements and nested if/then/else
 

Uses of OptimizingCompilerException in org.jikesrvm.compilers.opt.controlflow
 

Methods in org.jikesrvm.compilers.opt.controlflow that throw OptimizingCompilerException
private  void AnnotatedLSTNode.perform()
          Convert node into annotated format
 

Uses of OptimizingCompilerException in org.jikesrvm.compilers.opt.regalloc
 

Methods in org.jikesrvm.compilers.opt.regalloc that throw OptimizingCompilerException
 void LinearScan.UpdateOSRMaps.perform(IR ir)
          Iterate over the IR-based OSR map, and update symbolic registers with real reg number or spill locations.