R Under development (unstable) (2025-05-01 r88184 ucrt) -- "Unsuffered Consequences" Copyright (C) 2025 The R Foundation for Statistical Computing Platform: x86_64-w64-mingw32/x64 R is free software and comes with ABSOLUTELY NO WARRANTY. You are welcome to redistribute it under certain conditions. Type 'license()' or 'licence()' for distribution details. R is a collaborative project with many contributors. Type 'contributors()' for more information and 'citation()' on how to cite R or R packages in publications. Type 'demo()' for some demos, 'help()' for on-line help, or 'help.start()' for an HTML browser interface to help. Type 'q()' to quit R. > library("profmem") > > status <- profmem_status() > message("status: ", status) status: inactive > > depth <- profmem_depth() > message("depth: ", depth) depth: 0 > > if (capabilities("profmem")) { + + p <- profmem({ + x <- raw(1000) + A <- matrix(rnorm(100), ncol=10) + status_2 <- profmem_status() + depth_2 <- profmem_depth() + message("depth_2: ", depth_2) + stopifnot(depth2 == depth_+ 1) + }) + print(p) + + data <- as.data.frame(p, stringsAsFactors = FALSE) + print(data) + + t <- total(p) + print(t) + stopifnot(t == sum(data$bytes, na.rm=TRUE)) + + + foo <- function(n) { + matrix(rnorm(n^2), ncol=n) + } + + p <- profmem({ + A <- matrix(rnorm(100^2), ncol=100) + B <- foo(100) + }) + print(p) + + p2 <- subset(p, bytes >= 40000) + print(p2) + + p <- profmem({ + A <- matrix(rnorm(100^2), ncol=100) + B <- foo(100) + }, threshold = 40000) + d <- as.data.frame(p, stringsAsFactors = FALSE) + print(d) + + p1 <- subset(p, !is.na(bytes)) + d1 <- as.data.frame(p1, stringsAsFactors = FALSE) + + p2 <- subset(p, bytes >= 40000) + d2 <- as.data.frame(p2, stringsAsFactors = FALSE) + print(d2) + stopifnot(identical(d2, d1)) + + print(dim(p)) + stopifnot(identical(dim(p), dim(d))) + + } ## if (capabilities("profmem")) depth_2: 1 Rprofmem memory profiling of: { x <- raw(1000) A <- matrix(rnorm(100), ncol = 10) status_2 <- profmem_status() depth_2 <- profmem_depth() message("depth_2: ", depth_2) stopifnot(depth2 == depth_ + 1) } Memory allocations: Number of 'new page' entries not displayed: 12 what bytes calls 3 alloc 256 4 alloc 488 5 alloc 488 6 alloc 1072 8 alloc 1048 raw() 9 alloc 272 matrix() 10 alloc 552 matrix() 11 alloc 552 matrix() 12 alloc 1072 matrix() 13 alloc 848 matrix() -> rnorm() 14 alloc 2552 matrix() -> rnorm() 15 alloc 848 matrix() 23 alloc 440 24 alloc 1344 25 alloc 1344 26 alloc 1072 27 alloc 184 29 alloc 216 30 alloc 528 31 alloc 1648 32 alloc 1648 33 alloc 1072 34 alloc 256 35 alloc 456 36 alloc 216 37 alloc 256 total 20728 Note, an error occurred while evaluating the expression: object 'depth2' not found what bytes 1 new page NA 2 new page NA 3 alloc 256 4 alloc 488 5 alloc 488 6 alloc 1072 7 new page NA 8 alloc 1048 9 alloc 272 10 alloc 552 11 alloc 552 12 alloc 1072 13 alloc 848 14 alloc 2552 15 alloc 848 16 new page NA 17 new page NA 18 new page NA 19 new page NA 20 new page NA 21 new page NA 22 new page NA 23 alloc 440 24 alloc 1344 25 alloc 1344 26 alloc 1072 27 alloc 184 28 new page NA 29 alloc 216 30 alloc 528 31 alloc 1648 32 alloc 1648 33 alloc 1072 34 alloc 256 35 alloc 456 36 alloc 216 37 alloc 256 38 new page NA calls 1 2 3 4 5 6 7 8 raw() 9 matrix() 10 matrix() 11 matrix() 12 matrix() 13 matrix() -> rnorm() 14 matrix() -> rnorm() 15 matrix() 16 profmem_status() -> profmem_stack() 17 profmem_depth() -> profmem_stack() -> match.arg() 18 message() -> .makeMessage() -> unlist() 19 message() -> withRestarts() -> makeRestartList() 20 message() -> withRestarts() -> withOneRestart() -> doWithOneRestart() 21 message() -> withRestarts() -> withOneRestart() -> doWithOneRestart() 22 message() -> withRestarts() -> withOneRestart() -> doWithOneRestart() -> signalCondition() -> conditionMessage() 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 [1] 20728 Rprofmem memory profiling of: { A <- matrix(rnorm(100^2), ncol = 100) B <- foo(100) } Memory allocations: Number of 'new page' entries not displayed: 4 what bytes calls 4 alloc 80048 matrix() -> rnorm() 5 alloc 80048 matrix() 6 alloc 80048 foo() -> matrix() -> rnorm() 7 alloc 80048 foo() -> matrix() total 320192 Rprofmem memory profiling of: { A <- matrix(rnorm(100^2), ncol = 100) B <- foo(100) } Memory allocations: what bytes calls 4 alloc 80048 matrix() -> rnorm() 5 alloc 80048 matrix() 6 alloc 80048 foo() -> matrix() -> rnorm() 7 alloc 80048 foo() -> matrix() total 320192 what bytes 1 new page NA 2 new page NA 3 alloc 80048 4 alloc 80048 5 new page NA 6 new page NA 7 new page NA 8 new page NA 9 new page NA 10 new page NA 11 new page NA 12 new page NA 13 new page NA 14 new page NA 15 new page NA 16 new page NA 17 new page NA 18 new page NA 19 new page NA 20 new page NA 21 new page NA 22 new page NA 23 new page NA 24 new page NA 25 new page NA 26 new page NA 27 new page NA 28 new page NA 29 new page NA 30 new page NA 31 new page NA 32 new page NA 33 new page NA 34 new page NA 35 new page NA 36 new page NA 37 new page NA 38 new page NA 39 new page NA 40 new page NA 41 new page NA 42 new page NA 43 new page NA 44 new page NA 45 new page NA 46 new page NA 47 new page NA 48 new page NA 49 new page NA 50 new page NA 51 new page NA 52 new page NA 53 new page NA 54 new page NA 55 new page NA 56 new page NA 57 new page NA 58 new page NA 59 new page NA 60 new page NA 61 new page NA 62 new page NA 63 new page NA 64 new page NA 65 new page NA 66 new page NA 67 new page NA 68 new page NA 69 new page NA 70 new page NA 71 new page NA 72 new page NA 73 new page NA 74 new page NA 75 new page NA 76 new page NA 77 new page NA 78 new page NA 79 new page NA 80 new page NA 81 new page NA 82 new page NA 83 new page NA 84 new page NA 85 new page NA 86 new page NA 87 new page NA 88 new page NA 89 new page NA 90 new page NA 91 new page NA 92 new page NA 93 new page NA 94 new page NA 95 new page NA 96 new page NA 97 new page NA 98 new page NA 99 new page NA 100 new page NA 101 new page NA 102 new page NA 103 new page NA 104 new page NA 105 new page NA 106 new page NA 107 new page NA 108 new page NA 109 new page NA 110 new page NA 111 new page NA 112 new page NA 113 new page NA 114 new page NA 115 new page NA 116 new page NA 117 new page NA 118 new page NA 119 new page NA 120 new page NA 121 alloc 58792 122 alloc 1271824 123 alloc 1271816 124 new page NA 125 new page NA 126 new page NA 127 new page NA 128 new page NA 129 new page NA 130 new page NA 131 new page NA 132 new page NA 133 new page NA 134 new page NA 135 new page NA 136 new page NA 137 new page NA 138 new page NA 139 new page NA 140 new page NA 141 new page NA 142 new page NA 143 new page NA 144 new page NA 145 new page NA 146 new page NA 147 new page NA 148 new page NA 149 new page NA 150 new page NA 151 new page NA 152 new page NA 153 new page NA 154 new page NA 155 new page NA 156 new page NA 157 new page NA 158 new page NA 159 new page NA 160 new page NA 161 new page NA 162 new page NA 163 new page NA 164 new page NA 165 new page NA 166 new page NA 167 new page NA 168 new page NA 169 new page NA 170 new page NA 171 new page NA 172 new page NA 173 new page NA 174 new page NA 175 new page NA 176 new page NA 177 new page NA 178 new page NA 179 new page NA 180 new page NA 181 new page NA 182 new page NA 183 new page NA 184 new page NA 185 new page NA 186 new page NA 187 new page NA 188 new page NA 189 new page NA 190 new page NA 191 new page NA 192 new page NA 193 new page NA 194 new page NA 195 new page NA 196 new page NA 197 new page NA 198 new page NA 199 new page NA 200 new page NA 201 new page NA 202 new page NA 203 new page NA 204 new page NA 205 new page NA 206 new page NA 207 new page NA 208 new page NA 209 new page NA 210 new page NA 211 new page NA 212 new page NA 213 new page NA 214 new page NA 215 new page NA 216 new page NA 217 new page NA 218 new page NA 219 new page NA 220 new page NA 221 new page NA 222 new page NA 223 new page NA 224 new page NA 225 new page NA 226 new page NA 227 new page NA 228 new page NA 229 new page NA 230 new page NA 231 new page NA 232 new page NA 233 new page NA 234 new page NA 235 new page NA 236 new page NA 237 new page NA 238 new page NA 239 new page NA 240 new page NA 241 new page NA 242 new page NA 243 new page NA 244 new page NA 245 new page NA 246 new page NA 247 new page NA 248 new page NA 249 new page NA 250 new page NA 251 new page NA 252 new page NA 253 new page NA 254 new page NA 255 new page NA 256 new page NA 257 new page NA 258 new page NA 259 new page NA 260 new page NA 261 new page NA 262 new page NA 263 new page NA 264 new page NA 265 new page NA 266 new page NA 267 new page NA 268 new page NA 269 new page NA 270 new page NA 271 new page NA 272 new page NA 273 new page NA 274 new page NA 275 new page NA 276 new page NA 277 new page NA 278 new page NA 279 new page NA 280 new page NA 281 new page NA 282 new page NA 283 new page NA 284 new page NA 285 new page NA 286 new page NA 287 new page NA 288 new page NA 289 new page NA 290 new page NA 291 new page NA 292 new page NA 293 new page NA 294 new page NA 295 new page NA 296 new page NA 297 new page NA 298 new page NA 299 new page NA 300 new page NA 301 new page NA 302 new page NA 303 new page NA 304 new page NA 305 new page NA 306 new page NA 307 new page NA 308 new page NA 309 new page NA 310 new page NA 311 new page NA 312 new page NA 313 new page NA 314 new page NA 315 new page NA 316 new page NA 317 new page NA 318 new page NA 319 new page NA 320 new page NA 321 new page NA 322 new page NA 323 new page NA 324 new page NA 325 new page NA 326 new page NA 327 new page NA 328 new page NA 329 new page NA 330 new page NA 331 new page NA 332 new page NA 333 new page NA 334 new page NA 335 new page NA 336 new page NA 337 new page NA 338 new page NA 339 new page NA 340 new page NA 341 new page NA 342 new page NA 343 new page NA 344 new page NA 345 new page NA 346 new page NA 347 new page NA 348 new page NA 349 new page NA 350 new page NA 351 new page NA 352 new page NA 353 new page NA 354 new page NA 355 new page NA 356 new page NA 357 new page NA 358 new page NA 359 new page NA 360 new page NA 361 new page NA 362 new page NA 363 new page NA 364 new page NA 365 new page NA 366 new page NA 367 new page NA 368 new page NA 369 new page NA 370 new page NA 371 new page NA 372 new page NA 373 new page NA 374 new page NA 375 new page NA 376 new page NA 377 new page NA 378 new page NA 379 new page NA 380 new page NA 381 new page NA 382 new page NA 383 new page NA 384 new page NA 385 new page NA 386 new page NA 387 new page NA 388 new page NA 389 new page NA 390 new page NA 391 new page NA 392 new page NA 393 new page NA 394 new page NA 395 new page NA 396 new page NA 397 new page NA 398 new page NA 399 new page NA 400 new page NA 401 new page NA 402 new page NA 403 new page NA 404 new page NA 405 new page NA 406 new page NA 407 new page NA 408 new page NA 409 new page NA 410 new page NA 411 new page NA 412 new page NA 413 new page NA 414 new page NA 415 new page NA 416 new page NA 417 new page NA 418 new page NA 419 new page NA 420 new page NA 421 new page NA 422 new page NA 423 new page NA 424 new page NA 425 new page NA 426 new page NA 427 new page NA 428 new page NA 429 new page NA 430 new page NA 431 new page NA 432 new page NA 433 new page NA 434 new page NA 435 new page NA 436 new page NA 437 new page NA 438 new page NA 439 new page NA 440 new page NA 441 new page NA 442 new page NA 443 new page NA 444 new page NA 445 new page NA 446 new page NA 447 new page NA 448 new page NA 449 new page NA 450 new page NA 451 new page NA 452 new page NA 453 new page NA 454 new page NA 455 new page NA 456 new page NA 457 new page NA 458 new page NA 459 new page NA 460 new page NA 461 new page NA 462 new page NA 463 new page NA 464 new page NA 465 new page NA 466 new page NA 467 new page NA 468 new page NA 469 new page NA 470 new page NA 471 new page NA 472 new page NA 473 new page NA 474 new page NA 475 new page NA 476 new page NA 477 new page NA 478 new page NA 479 alloc 80048 480 alloc 80048 calls 1 2 3 matrix() -> rnorm() 4 matrix() 5 foo() 6 foo() 7 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() 8 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() 9 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() 10 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() 11 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() 12 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> make.toplevelContext() -> structure() 13 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> make.toplevelContext() -> structure() -> makeCenv() -> structure() 14 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> make.toplevelContext() -> structure() -> makeCenv() -> structure() 15 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> make.toplevelContext() -> structure() -> makeCenv() -> structure() 16 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> make.toplevelContext() -> structure() -> makeCenv() -> structure() -> frameTypes() -> isNamespace() 17 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> make.toplevelContext() -> structure() -> makeCenv() -> structure() -> frameTypes() 18 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> make.toplevelContext() -> structure() -> makeCenv() -> structure() -> frameTypes() 19 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> make.toplevelContext() -> structure() 20 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> make.toplevelContext() -> structure() 21 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() 22 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> make.functionContext() 23 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> make.functionContext() -> funEnv() 24 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> make.functionContext() -> funEnv() -> addCenvFrame() 25 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> make.functionContext() -> funEnv() -> addCenvFrame() -> addCenvVars() 26 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> make.functionContext() -> funEnv() -> addCenvFrame() -> addCenvVars() -> union() 27 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> make.functionContext() -> funEnv() -> addCenvFrame() -> addCenvVars() -> union() -> .set_ops_need_as_vector() 28 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> make.functionContext() -> funEnv() -> addCenvFrame() -> addCenvVars() -> union() -> .set_ops_need_as_vector() -> tryCatch() 29 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> make.functionContext() -> funEnv() -> addCenvFrame() -> addCenvVars() -> union() -> .set_ops_need_as_vector() -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() 30 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> make.functionContext() -> funEnv() -> addCenvFrame() -> addCenvVars() -> union() 31 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> make.functionContext() -> funEnv() -> ..getNamespace() 32 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> make.functionContext() -> funEnv() 33 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> make.functionContext() -> funEnv() 34 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> make.functionContext() -> funEnv() -> findLocalsList() -> Filter() -> unlist() -> lapply() 35 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> make.functionContext() -> funEnv() -> findLocalsList() -> Filter() -> unlist() -> lapply() -> FUN() -> isBaseVar() -> ..getNamespace() -> %||%() 36 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> make.functionContext() -> funEnv() -> findLocalsList() -> Filter() -> unlist() -> lapply() -> FUN() -> isBaseVar() 37 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> make.functionContext() -> funEnv() -> findLocalsList() -> Filter() -> unlist() -> lapply() -> FUN() -> isBaseVar() 38 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> make.functionContext() -> funEnv() -> findLocalsList() -> Filter() -> unlist() -> lapply() -> FUN() -> isBaseVar() 39 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> make.functionContext() -> funEnv() -> findLocalsList() -> Filter() -> unlist() -> lapply() -> FUN() -> isBaseVar() -> getInlineInfo() 40 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> make.functionContext() -> funEnv() -> findLocalsList() -> Filter() -> unlist() -> lapply() -> FUN() -> isBaseVar() -> getInlineInfo() 41 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> make.functionContext() -> funEnv() -> findLocalsList() -> Filter() -> unlist() -> lapply() -> FUN() -> isBaseVar() -> getInlineInfo() 42 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> make.functionContext() -> funEnv() -> findLocalsList() -> Filter() -> unlist() -> lapply() -> FUN() -> isBaseVar() -> getInlineInfo() -> findCenvVar() 43 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> make.functionContext() -> funEnv() -> findLocalsList() -> Filter() -> unlist() -> lapply() -> FUN() -> isBaseVar() -> getInlineInfo() -> findCenvVar() 44 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> make.functionContext() -> funEnv() -> findLocalsList() -> Filter() -> unlist() -> lapply() -> FUN() -> isBaseVar() -> getInlineInfo() -> findCenvVar() 45 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> make.functionContext() -> funEnv() -> findLocalsList() -> Filter() -> unlist() -> lapply() -> FUN() -> isBaseVar() -> getInlineInfo() 46 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> make.functionContext() -> funEnv() -> findLocalsList() -> Filter() -> unlist() -> lapply() -> FUN() -> isBaseVar() -> getInlineInfo() -> findCenvVar() 47 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> make.functionContext() -> funEnv() -> findLocalsList() -> Filter() -> unlist() -> lapply() -> FUN() -> isBaseVar() -> getInlineInfo() -> findCenvVar() 48 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> make.functionContext() -> funEnv() -> findLocalsList() -> Filter() -> unlist() -> lapply() -> FUN() -> isBaseVar() -> getInlineInfo() -> findCenvVar() 49 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> make.functionContext() -> funEnv() -> findLocalsList() -> Filter() -> unlist() -> lapply() -> FUN() -> isBaseVar() -> getInlineInfo() 50 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> make.functionContext() -> funEnv() -> findLocalsList() -> Filter() -> unlist() -> lapply() -> FUN() -> isBaseVar() -> getInlineInfo() -> findCenvVar() 51 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> make.functionContext() -> funEnv() -> findLocalsList() -> Filter() -> unlist() -> lapply() -> FUN() -> isBaseVar() -> getInlineInfo() -> findCenvVar() 52 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> make.functionContext() -> funEnv() -> findLocalsList() -> Filter() -> unlist() -> lapply() -> FUN() -> isBaseVar() -> getInlineInfo() -> findCenvVar() 53 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> make.functionContext() -> funEnv() -> findLocalsList() -> Filter() -> unlist() -> lapply() -> FUN() -> isBaseVar() -> getInlineInfo() -> findCenvVar() 54 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> make.functionContext() -> funEnv() -> findLocalsList() -> Filter() -> unlist() -> lapply() -> FUN() -> isBaseVar() -> getInlineInfo() -> findCenvVar() 55 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> make.functionContext() -> funEnv() -> findLocalsList() 56 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> make.functionContext() -> funEnv() -> findLocalsList() 57 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> make.functionContext() -> funEnv() -> findLocalsList() 58 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> make.functionContext() -> funEnv() -> findLocalsList() 59 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> make.functionContext() -> funEnv() -> findLocalsList() -> findLocalsList1() 60 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> make.functionContext() -> funEnv() -> findLocalsList() -> findLocalsList1() -> lapply() -> FUN() -> lapply() 61 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> make.functionContext() -> funEnv() -> findLocalsList() -> findLocalsList1() -> lapply() -> FUN() -> lapply() 62 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> make.functionContext() -> funEnv() -> findLocalsList() -> findLocalsList1() -> lapply() -> FUN() -> lapply() -> findLocals1() -> %in%() 63 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> make.functionContext() -> funEnv() -> findLocalsList() -> findLocalsList1() -> lapply() -> FUN() -> lapply() -> FUN() 64 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> make.functionContext() -> funEnv() -> findLocalsList() -> findLocalsList1() -> lapply() 65 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> make.functionContext() -> funEnv() -> findLocalsList() -> findLocalsList1() 66 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> make.functionContext() -> funEnv() -> findLocalsList() -> findLocalsList1() 67 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> make.functionContext() -> funEnv() -> findLocalsList() -> findLocalsList1() 68 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> make.functionContext() -> funEnv() -> findLocalsList() -> unique() -> get() 69 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> make.functionContext() -> funEnv() -> findLocalsList() -> findLocalsList1() -> lapply() -> FUN() -> lapply() -> as.list() -> as.list.default() 70 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> make.functionContext() -> funEnv() -> findLocalsList() -> findLocalsList1() -> lapply() 71 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> make.functionContext() -> funEnv() -> findLocalsList() -> findLocalsList1() -> lapply() 72 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> make.functionContext() -> funEnv() -> findLocalsList() -> findLocalsList1() 73 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> make.functionContext() -> funEnv() -> findLocalsList() -> findLocalsList1() -> lapply() 74 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> make.functionContext() -> funEnv() -> findLocalsList() -> findLocalsList1() -> ls() 75 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> make.functionContext() -> funEnv() -> findLocalsList() 76 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> make.functionContext() -> funEnv() -> addCenvVars() -> union() -> .set_ops_need_as_vector() -> tryCatch() -> tryCatchList() -> tryCatchOne() 77 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> make.functionContext() -> funEnv() -> addCenvVars() -> union() -> isa() 78 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> make.functionContext() -> make.toplevelContext() -> structure() 79 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> make.functionContext() -> make.toplevelContext() -> structure() -> getCompilerOption() -> %in%() 80 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> make.functionContext() -> make.toplevelContext() -> structure() 81 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> make.functionContext() 82 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() 83 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> mayCallBrowser() 84 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> mayCallBrowser() -> mayCallBrowserList() -> mayCallBrowser() -> mayCallBrowserList() -> as.list() 85 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() 86 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() 87 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() 88 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() 89 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() 90 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() 91 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() 92 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() 93 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() 94 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() 95 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() 96 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() 97 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() 98 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> make.codeBuf() -> getExprSrcref() 99 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() 100 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() 101 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() 102 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() 103 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() 104 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() 105 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> constantFold() 106 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> constantFold() -> constantFoldCall() 107 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() 108 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() 109 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() 110 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() 111 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() 112 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() 113 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() 114 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() 115 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() 116 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineInfo() 117 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineInfo() -> findCenvVar() 118 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineInfo() -> findCenvVar() 119 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineInfo() -> findCenvVar() 120 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> ..getNamespace() 121 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 122 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 123 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 124 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 125 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 126 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 127 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 128 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 129 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 130 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 131 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 132 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 133 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 134 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 135 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 136 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 137 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 138 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 139 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 140 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 141 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 142 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 143 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 144 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 145 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 146 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 147 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 148 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 149 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 150 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 151 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 152 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 153 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 154 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 155 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 156 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 157 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 158 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 159 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 160 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 161 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 162 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 163 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 164 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 165 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 166 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 167 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 168 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 169 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 170 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 171 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 172 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 173 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 174 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 175 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 176 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 177 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 178 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 179 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 180 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 181 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 182 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 183 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 184 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 185 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 186 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 187 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 188 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 189 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 190 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 191 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 192 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 193 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 194 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 195 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 196 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 197 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 198 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 199 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 200 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 201 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 202 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 203 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 204 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 205 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 206 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 207 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 208 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 209 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 210 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 211 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 212 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 213 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 214 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 215 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 216 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 217 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 218 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 219 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 220 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 221 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 222 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 223 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 224 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 225 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 226 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 227 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 228 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 229 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 230 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 231 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 232 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 233 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 234 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 235 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 236 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 237 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 238 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 239 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 240 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 241 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 242 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 243 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 244 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 245 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 246 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 247 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 248 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 249 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 250 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 251 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 252 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 253 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 254 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 255 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 256 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 257 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 258 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 259 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 260 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 261 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 262 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 263 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 264 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 265 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 266 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 267 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 268 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 269 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 270 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 271 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 272 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 273 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 274 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 275 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 276 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 277 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 278 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 279 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 280 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 281 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 282 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 283 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 284 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 285 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 286 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 287 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 288 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 289 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 290 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 291 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 292 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 293 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 294 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 295 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 296 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 297 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 298 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 299 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 300 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 301 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 302 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 303 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 304 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 305 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 306 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 307 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 308 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 309 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 310 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 311 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 312 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 313 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 314 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 315 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 316 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 317 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 318 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 319 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 320 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 321 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 322 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 323 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 324 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 325 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 326 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 327 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 328 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 329 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 330 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 331 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 332 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 333 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 334 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 335 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 336 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 337 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 338 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 339 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 340 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 341 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 342 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 343 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 344 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 345 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 346 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 347 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 348 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 349 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 350 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 351 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 352 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 353 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 354 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 355 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 356 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 357 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 358 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 359 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 360 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 361 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 362 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 363 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 364 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 365 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 366 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 367 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 368 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 369 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 370 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 371 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 372 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 373 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 374 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 375 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 376 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 377 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 378 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 379 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 380 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 381 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 382 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 383 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 384 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 385 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 386 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 387 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 388 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 389 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 390 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 391 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 392 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 393 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 394 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 395 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 396 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 397 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 398 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 399 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 400 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 401 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 402 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 403 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 404 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 405 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 406 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 407 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 408 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 409 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 410 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 411 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 412 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 413 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 414 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 415 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 416 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 417 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 418 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 419 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 420 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 421 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 422 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 423 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 424 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 425 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 426 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 427 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 428 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 429 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 430 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 431 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 432 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 433 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 434 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 435 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 436 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 437 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 438 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 439 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 440 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 441 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 442 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 443 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 444 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 445 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 446 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 447 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 448 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 449 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 450 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 451 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 452 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 453 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 454 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 455 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 456 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 457 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 458 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 459 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 460 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 461 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 462 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 463 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 464 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 465 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 466 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 467 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 468 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 469 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 470 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 471 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 472 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 473 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 474 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 475 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 476 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 477 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 478 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 479 foo() -> matrix() -> rnorm() 480 foo() -> matrix() what bytes 3 alloc 80048 4 alloc 80048 121 alloc 58792 122 alloc 1271824 123 alloc 1271816 479 alloc 80048 480 alloc 80048 calls 3 matrix() -> rnorm() 4 matrix() 121 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 122 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 123 foo() -> -> tryCatch() -> tryCatchList() -> tryCatchOne() -> doTryCatch() -> cmpfun() -> genCode() -> cmp() -> cmpCall() -> tryInline() -> getInlineHandler() -> exists() -> 479 foo() -> matrix() -> rnorm() 480 foo() -> matrix() [1] 480 3 > > > proc.time() user system elapsed 0.31 0.06 0.31