JVM optimize unneeded temporary vals
This commit is contained in:
committed by
TeamCityServer
parent
d8f6d82411
commit
f4a1e27124
+9
@@ -17,8 +17,17 @@ suspend fun ApplicationCall.test(authenticationService: AuthenticationService) {
|
||||
respond(authenticationService.execute(receiveJSON()))
|
||||
}
|
||||
|
||||
// JVM_TEMPLATES
|
||||
// $i$f$respond x1, $i$f$receiveJSON x2: before and after suspension point
|
||||
// 3 ISTORE 5
|
||||
// 0 ILOAD 5
|
||||
// 2 \$i\$f\$receiveJSON I .* 5
|
||||
// 1 \$i\$f\$respond I .* 5
|
||||
|
||||
// JVM_IR_TEMPLATES
|
||||
// 5 ISTORE 3
|
||||
// 1 ISTORE 2
|
||||
// 0 ILOAD 3
|
||||
// 0 ILOAD 2
|
||||
// 1 \$i\$f\$receiveJSON I .* 2
|
||||
// 3 \$i\$f\$respond I .* 3
|
||||
|
||||
Reference in New Issue
Block a user