comparison graal/GraalCompiler/src/com/sun/c1x/asm/AbstractAssembler.java @ 2570:46586c77b129

Cleaned some remaining references to scope/inlining
author Gilles Duboscq <gilles.duboscq@oracle.com>
date Tue, 03 May 2011 10:19:11 +0200
parents 16b9a8b5ad39
children d8601d421b96
comparison
equal deleted inserted replaced
2569:7aa67f5f3884 2570:46586c77b129
71 for (ExceptionInfo ei : exceptionInfoList) { 71 for (ExceptionInfo ei : exceptionInfoList) {
72 int codeOffset = ei.codeOffset; 72 int codeOffset = ei.codeOffset;
73 for (ExceptionHandler handler : ei.exceptionHandlers) { 73 for (ExceptionHandler handler : ei.exceptionHandlers) {
74 int entryOffset = handler.entryCodeOffset(); 74 int entryOffset = handler.entryCodeOffset();
75 RiType caughtType = handler.handler.catchType(); 75 RiType caughtType = handler.handler.catchType();
76 targetMethod.recordExceptionHandler(codeOffset, ei.bci, handler.scopeCount(), entryOffset, handler.handlerBCI(), caughtType); 76 targetMethod.recordExceptionHandler(codeOffset, ei.bci, 0, entryOffset, handler.handlerBCI(), caughtType);
77 } 77 }
78 } 78 }
79 } 79 }
80 80
81 if (C1XOptions.PrintMetrics) { 81 if (C1XOptions.PrintMetrics) {